這是我的代碼以複選框與一個和類作爲或圖所示是否可以使用複選框更改與類的組合?
<input type="checkbox" class="one" value="1">
<br/>
<input type="checkbox" class="two" value="2">
<br/>
<input type="checkbox" class="one" value="3">
<br/>
如果複選框被選中選中,我有下面的代碼,這被稱爲
$(document).on('change', '.[type="checkbox"]', function(event, data){
alert('checked ');
});
我的問題是,我怎麼能在事件處理程序中使用類?
我已經試過這樣
$(document).on('change', '.one .[type="checkbox"]', function(event, data){
alert('checked ');
});
$(document).on('change', '.two .[type="checkbox"]', function(event, data){
alert('checked ');
});