我想在某些 div 中禁用鼠标单击。为此,我使用了 die 功能,它不起作用。请让我知道我该怎么做?在jquery中可以吗?
问问题
574 次
2 回答
1
这很简单。使用此代码:
$("#DIV_ID").click(function(e){
e.preventDefault();
e.stopPropagation()
});
于 2013-01-10T05:22:14.030 回答
1
使用stopImmediatePropagation() ...
阻止其余的处理程序被执行,并防止事件在 DOM 树中冒泡。
试试这个
$("#yourDivId").click(function(e){
e.preventDefault();
e.stopImmediatePropagation();
});
于 2013-01-10T05:26:19.683 回答