我正在尝试动态添加一个按钮 - 第一个按钮有效,但其他按钮无效。我以前使用过该live
功能,但 jQuery 1.9.1 删除了该功能。我应该怎么做才能使新添加的按钮起作用?
HTML 代码:
<div class="take">
<p>this is the para</p>
<button class="test">copy</button>
</div>
jQuery代码:
$('.test').on('click', function() {
var a = $(this).parent();
new.clone().insertAfter(a);
})
这是jsfiddle。