首页 > 代码库 > IE8的input兼容性问题
IE8的input兼容性问题
在chrome、firefox、IE9+都是支持input事件
在IE8中,单纯的input事件无法监听输入框中变化,需要与propertychange共用
测试代码如下:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script src="http://www.mamicode.com/jquery-1.11.3.js"></script> 6 <title></title> 7 </head> 8 <body> 9 <input type="text" placeholder="请输入内容"/>10 <input type="text" id="txtInput"/>11 <script>12 //IE9+、chrome、firefox13 $("#txtInput").bind("input",function(e){ // propertychange14 alert(111);15 });16 //IE817 $("#txtInput").bind("input propertychange",function(e){18 alert("输入框有变化。。");19 });20 </script>21 </body>22 </html>
IE8的input兼容性问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。