問題:
click
イベントがbutton
のために働いているが、click
イベントはlabel
のために働いていない私をクリックミーをクリックします。以下のコード
HTML
<button type="button" id="clickMe" class="btn">Click Me</button>
<div class="preview">
</div>
jQueryの
$('#clickMe').click(function() {
var lab = "<label class=\"click\">Click Me </label>";
$('.preview').append(lab);
});
$('.click').click(function() {
alert("You clicked on text");
});
[ 'イベントdelegation'](https://learn.jquery.com/events/event-delegation/)についての記事を読む – Rayon