我有這段代碼和HTML觸發單選按鈕 它的工作,並沒有任何問題,「但是,應該有一個名稱屬性」 當我刪除名稱roperty是不工作 是什麼原因?由於產權名稱的必要性?
<input type="radio" name="e" />
<input type="radio" name="e" />
<input type="radio" name="e" />
$(document).ready(function() {
$('input[type=radio]').change(function (event) {
//I've used classes based on values, which works as long as
//the values are consistent and don't contain spaces!
console.log(this);
$.filter(this).prop('checked', this.checked);
});
});
你到底在這裏做 –
一點也沒有」看起來這個名字與javascript有什麼關係,所以我想你說的是表單提交的時間,是的,那麼元素sh應該有名字,但不是全部相同的名字?然而腳本中的評論根本沒有意義? – adeneo
單選按鈕應該具有相同的名稱,因爲這就是它如何確定哪些屬於同一組。 – Barmar