“MyParentPage.htm”使用jquery的加载函数加载('myDiv.htm')//
myDiv.htm仅包含:
<a href="#" class="bt-cbox">Click me</a>
我在“MyParentPage.htm”中有以下内容
$(document).ready(function() {
$(".bt-cbox").click(function() {
alert("handler hit");
});
});
为什么我的警报没有被点击
答案 0 :(得分:6)
$(document).ready(function() {
$(".bt-cbox").live("click",function() {
alert("handler hit");
});
});
请参阅live