无法获取jQuery单击处理程序以在ajax加载的元素上触发

时间:2010-01-27 12:06:19

标签: javascript jquery

“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");
    });
});

为什么我的警报没有被点击

1 个答案:

答案 0 :(得分:6)

$(document).ready(function() {
    $(".bt-cbox").live("click",function() {
        alert("handler hit");
    });
});

请参阅live