本文介绍了在“mousedown”中使用event.preventDefault()防止“点击”或“mouseup” jquery中的事件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是新的 jquery ,我怀疑是否使用 events.preventDefault() mousedown mouseup 事件阻止点击 dblclick 事件?

I am new to jquery and i have a doubt whether using events.preventDefault() in the mousedown or mouseup events does prevent the click or dblclick event?

请提供一个澄清或示例。

Please provide me a clarification or a sample.

提前感谢
Madhu

Thanks in advance.Madhu

推荐答案

mouseup mousedown 阻止默认点击事件。

Neither of mouseup or mousedown prevent the default click event.

您需要使用 click()

$('.test').on('click', function(e) {
    e.preventDefault();
});

这篇关于在“mousedown”中使用event.preventDefault()防止“点击”或“mouseup” jquery中的事件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 17:41