我想知道是否有办法为event.preventDefault()
已应用 ' ' 的特定元素列出 default_event_actions 并告诉脚本要阻止或不阻止哪些事件或操作...
就像是:
$(element).on('click', function(e){
e.preventDefault() //this will prevent all
//...is there a way of preventing specifically or particularly...
})
可能吗?