Jquery 点击事件重复获取叠加 (一)
用jquery添加绑定事件 添加多少次 点击的时候就触发多少次 如果想解决这个问题 就在点击函数里先用 $(对象).off("click") 取消上一次的点击事件
上码:
$("#pdfId").click(function () { $.ajax({ //url: "/SwFrontData/GetAttachmentData/" + $("#wdId").val(), url:url2, type: "post", dataType: "json", success: function (data) { console.log("1"); console.log(data); for (var i = 0; i < data.length; i++) { if (data[i].ContentType == 0) { WordHideOrShow(data[i].ContentPath); } } }, error: function (err) { } }); $("#pdfId").off("click"); //取消每次的点击 });