ページに 2 つの 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 イベントを使用してハンドラーも呼び出している場合、その時も同じ問題に直面しています。
この問題を回避するにはどうすればよいですか? 必要なことをしてください。