爲什麼我的無線電盒形式在Firefox 7.0.1中不工作,但在IE,Chrome和Safari中正常工作,我迷了路。問題是,「檢查」的廣播箱沒有重置爲HTML顯示的內容。在Firefox中沒有重置爲「已檢查」狀態的無線電盒
例如,如果我將溫度設置從「f」更改爲「c」,然後按Select,操作腳本將看到正確的值。然後按FF中的返回並刷新窗口,仍然選擇「c」。如上所述,這可以在其他瀏覽器中按預期工作,但不在FF中。
我很難相信這個基本的東西在FF中被破壞,但HTML是直截了當的。
- 傑夫
<form name="form1" method="POST" action="weather_uom_set.php">
<h3>Precipitation</h3>
<input type="radio" name="precip" value="in" checked="checked"/> Inches (")<br/>
<input type="radio" name="precip" value="mm" /> Millimeters (mm)<br/>
<h3>Temperature</h3>
<input type="radio" name="temp" value="f" checked="checked"/> Fahrenheit (°f)<br/>
<input type="radio" name="temp" value="c" /> Celsius (°c)<br/>
<input type="submit" value="Submit" />
</form>
我張貼了我過去在http://stackoverflow.com/questions/7988729/firefox-remembering-radio-buttons-incorrectly/31680722#31680722 –