搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

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).