所以我使用以下方法來捕獲檢查單選按鈕的值,並在Chrome中工作正常,但在Firefox我只是得到了一個未定義的活動值。不能選擇在Firefox無線輸入的值,但在Chrome瀏覽器的
上什麼可能是任何想法,或者我怎麼能解決呢?
的HTML看起來像:
<input type="radio" name="group1" value="1101" data-toggle="radio"> meetings taken (5 points)
<label class="radio">
<span class="icons">
<span class="first-icon fui-radio-unchecked"></span>
<span class="second-icon fui-radio-checked"></span>
</span>
<input type="radio" name="group1" value="1111" data-toggle="radio"> closed restaurants (50 points)
</label>
<label class="radio">
<span class="icons">
<span class="first-icon fui-radio-unchecked"></span>
<span class="second-icon fui-radio-checked"></span>
</span>
<input type="radio" name="group1" value="1121" data-toggle="radio"> upsell (100 points)
</label>
</div>
</div>
如果您的標記完全如此,則無效。不是修復它可以解決你的問題,但這是一個好的開始。 – melancia
http://jsfiddle.net/PqRjS/檢查數據屬性 –