搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

meta refresh does not refresh drop down select options but does the check boxes... IE works without error (FF cashe issue)

  • 2 回覆
  • 4 有這個問題
  • 34 次檢視
  • 最近回覆由 cor-el

more options

Drop down list would not refresh even if the html had changed using meta refresh tag. The problem was solved by removing the list name in the html during the refresh part of my page. It is a php script so I can do this but with straight html I do not see a way to fix the issue for others finding this a problem, FF should not do this.

Example:

<select name="page_header_color">

             <option >blue</option>
           <option >green</option>
           <option selected >red</option>
           <option >black</option>
           <option >silver</option>
         </select>

to have it refresh correctly changed to this:

<select name="">

             <option >-------</option>
         </select>

the script changes the page to the above between refresh and the "real" html that fixes the issue, otherwise FF does not refresh the drop down lists at all, but it does refresh check boxes and everything else.

Drop down list would not refresh even if the html had changed using meta refresh tag. The problem was solved by removing the list name in the html during the refresh part of my page. It is a php script so I can do this but with straight html I do not see a way to fix the issue for others finding this a problem, FF should not do this. Example: <select name="page_header_color"> <option >blue</option> <option >green</option> <option selected >red</option> <option >black</option> <option >silver</option> </select> to have it refresh correctly changed to this: <select name=""> <option >-------</option> </select> the script changes the page to the above between refresh and the "real" html that fixes the issue, otherwise FF does not refresh the drop down lists at all, but it does refresh check boxes and everything else.

由 bizbook 於 修改

被選擇的解決方法

You need to reload and bypass the cache to reset choices made via selection boxes and drop down list.
Otherwise the selection are reloaded from the cache, so a meta reload won't work either (may work if you reset them via an onload event).

從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
http://forums.mozillazine.org/viewforum.php?f=25
You'll need to register and login to be able to post in that forum.

more options

選擇的解決方法

You need to reload and bypass the cache to reset choices made via selection boxes and drop down list.
Otherwise the selection are reloaded from the cache, so a meta reload won't work either (may work if you reset them via an onload event).