私は live() ユーザーであり、どうにかして live() が非推奨であることを知っています。bind() を使用して、新しく追加された dom のイベントを機能させようとしましたが、そうではありません。
bind() を正しく行う方法を教えてください。または、このタスクを実行する他の方法はありますか?
これはhtmlです:
<table>
<tr>
<td> hi there <span class="click">click me</span></td>
<tr>
<tr>
<td> hi there2 <span class="click">click me</span></td>
<tr>
<tr class="end">
<td></td>
</tr>
</table>
<button class="add_new">add new row</button>
これはjsです:
var new_row = '<tr><td> hi there, new row! <span class="click">click me</span></td><tr>';
$('.add_new').click(function() {
$('.end').before(new_row);
});
$('.click').bind('click', function() {
alert('clicked');
});
可能であれば、プラグインではなく、ネイティブの jquery のメソッドを使用したいと考えています。これは私の jsfiddle ですhttp://jsfiddle.net/bondythegreat/z3uXH/