我是Jquery的新手,我想在加载的div中选择ID
我的HTML页面有像这样的div标签
<div class="widget-body" id="customer_details_div">
当文档准备就绪时,我将HTML页面加载到此div标签
$(document).ready(function () {
$("#customer_details_div").load("button.html");
});
我加载的button.html HTML就像这样
<div align="right">
<button class="btn btn-xs btn-info" id="edit_btn"><h3>Edit</h3></button>
</div>
所以我需要在点击按钮上编写jquery函数,我这样写了
$("#edit_btn").click(function (event) {
alert("clicked"));
});
但它不起作用请帮助我这样做