js中IE和谷歌的常见兼容问题

2021-01-16 08:15

阅读:716

标签:问题   return   冒泡事件   ati   兼容问题   val   als   取消   谷歌   

1.取消冒泡事件

IE: e.cancelBubble=true;   //取消
Chrome:   e.stopPropagation();   //取消

2.阻止默认事件

IE: e.returnValue=false; //阻止
Chrome:  e.preventDefault()  //阻止

js中IE和谷歌的常见兼容问题

标签:问题   return   冒泡事件   ati   兼容问题   val   als   取消   谷歌   

原文地址:https://www.cnblogs.com/94-Lucky/p/13378389.html


评论


亲,登录后才可以留言!