これを想像してみてください:属性「data-question-id」を持つ複数のdivがあり、このdiv内に属性「has-next-question」を持つ場合と持たない場合がある1つ以上の入力があります。以下の例を参照してください。
<div data-question-id="5">
<input type="radio" has-next-question="true" value="2"> test1
<input type="radio" value="3"> test2
</div>
<div data-question-id="6">
<input type="radio" has-next-question="true" value="5"> test3
<input type="radio" has-next-question="true" value="7"> test4
</div>
最初の div でわかるように、2 つの入力がありますが、1 つには "has-next-question" という属性がありません。私の質問は、attr「data-question-id」を持つ親divを持ち、このdivにattr「has-next-question」を持つ入力が少なくともある入力にクリックイベントをバインドするにはどうすればよいかということです。
私はすでにこれを達成しています:
$(document).on('click', 'div[data-question-id] input', function(e) {
alert('click');
});
助けはありますか?みんなありがとう
編集:無効なhtml属性であるため、属性「has-next-question」を変更しました。
これを想像してみてください:「test1」をクリックするとイベントがトリガーされますが、「test2」をクリックするとイベントがトリガーされるはずです。これは、attr「data-question-id」を持つ親 div に attr「has を持つ入力が少なくとも 1 つあるためです」 -next-question"、"test1" に対応します。親 div に属性 "has-next-question" を持つ入力がない場合、イベントはトリガーされません。