<div class="cast">
<p id="addnew">
<input type="text"><b id="add">ADD</b>
</p>
</div>
$(document).ready(function(){
$("#add").click(function(){
$("#addnew").append("<p><input type=\"text\"><u id=\"del\">delete<u></p>");
});
$('#ab').click(function(){
alert();
});
});
我点击了#add
。附加<p><input type=\"text\"><u id=\"del\">delete<u></p>
稍后点击#del
。没有功能。
我有两个ajax函数。调用PHP包含html代码
答案 0 :(得分:0)
您应该使用IntegrationTestBase
绑定on
点击事件:
del
您可以在此处找到关于$(document).on("click","#del", function(e) {
...
});
的文档:http://api.jquery.com/on/