美文网首页
阻止默认事件

阻止默认事件

作者: 成长储存罐 | 来源:发表于2019-08-26 20:56 被阅读0次

epreventDefault();

window.event.returnvalue = false;

处理兼容方式:

if(e.preventDefault){

e.preventDefault( );

}else{

window.event.returnValue = false;

}

return false

相关文章

网友评论

      本文标题:阻止默认事件

      本文链接:https://www.haomeiwen.com/subject/ijfjectx.html