首页 > 代码库 > 【js】阻止默认事件

【js】阻止默认事件

ev.preventDefault();

return false;

另:

window.event? window.event.returnValue = http://www.mamicode.com/false : e.preventDefault();

 

延伸阻止冒泡:

w3c的方法是e.stopPropagation(),IE则是使用e.cancelBubble = true

【js】阻止默认事件