1
我正在使用Knockout JavaScript庫,並遇到此問題:我無法更改IE7中的單選按鈕選擇。如何更改IE 7中的單選按鈕選擇?
例如,在我的頁面上,我無法使用IE 7更改單選按鈕的方式,即controlTypes example。
有沒有解決這個問題?
我正在使用Knockout JavaScript庫,並遇到此問題:我無法更改IE7中的單選按鈕選擇。如何更改IE 7中的單選按鈕選擇?
例如,在我的頁面上,我無法使用IE 7更改單選按鈕的方式,即controlTypes example。
有沒有解決這個問題?
我找到了解決方案。通過爲該組中的所有單選按鈕添加具有相同值的名稱屬性(name="planetType"
,請參閱下文),IE也將很高興...
<label><input type="radio" value="all" data-bind="checked: typeToShow" name="planetType" />All</label>
<label><input type="radio" value="rock" data-bind="checked: typeToShow" name="planetType"/>Rocky planets</label>
<label><input type="radio" value="gasgiant" data-bind="checked: typeToShow" name="planetType"/>Gas giants</label>