頁面上的 a 標簽如下:
<a class="more" style="cursor: pointer;" id="commentMore"
onclick="javascript:selectMoreComment(this.id,2018);">查看更多</a>
頁面操作元素的js代碼:
function selectMoreComment(id, selectVal){
document.getElementById(id).onclick = null; // 解綁onclick事件
alert("點擊事件已經取消,當前業務處理完后再把點擊事件加上,可以防止數據加載期間用戶的重復點擊操作!")
// 綁定onclick點擊事件
document.getElementById(id).onclick = function () {
selectMoreComment(id, selectVal)
}
}
