我在我的页面上使用了两个 div。例如,
<div id="ListPage" data-role="content" style="background-color: gray; background-size: 100%;background-repeat: no-repeat; overflow: hidden;">
<div id="ListPageContent" style="width: 100%;"></div>
</div><div id='divViewMore' style='background-color:#D2D0C1;border-radius:5px;width:100%;height:20px;display:block;' align='center'><p style='text-align:center' >View more Here</p>
</div>
在这里,listPageContent - 我已经动态添加了数据。当我单击 divViewmore 时,它会从我的页面调用 2 次。我在页面中使用的以下代码。
$(document).ready(function() {
$("#divViewMore").unbind().click(function() {
alert('hello');
});
});
如果我使用普通的 onclick 事件并调用处理程序,那么我也面临同样的问题。
我应该如何避免这个问题?请只做那些需要的。