出于某种原因,我无法让我的“on”事件为点击事件触发。下面是调用和 HTML 的样子:
HTML:
<a class="cmt-replies-show" href="javascript:void(0)" id="cmt-count" style="">
<span>View All</span>
</a>
jQuery:
$('.cmt-replies-show').on("click", function(e) {
e.preventDefault();
alert("Clicked");
});
知道我错过了什么吗?