私のhtmlで:
<input type="checkbox" name="select">
<input type="radio" name="select">
論理的な理由により name プロパティが同じ
私のJSで
以下のコードを書きます。
$('input[type="checkbox"],input[type="radio"]').on("change",function(event){
console.log(event.target.nodename);
// on both cases it show "INPUT"
}
});
チェックボックスまたはラジオボタンをクリックしたことをどのように知ることができますか?