美文网首页
IOS系统兼容input keyup事件

IOS系统兼容input keyup事件

作者: 蕉下客_661a | 来源:发表于2019-05-16 14:58 被阅读0次

最近在做移动端模糊搜索功能,js监听input的keyup事件,在chrom模拟器和android手机环境运行都没有问题,到了ios手机却出现bug,没法实现功能;

查了好一会资料,发现keyup事件在ios系统下存在不兼容问题,解决的方法是通过 html5的 oninput事件来实现,代码如下;

<input id="input" type="text" />
document.querySelector('#input').addEventListener('input',function(){
    //do something
});
            document.querySelector('#input').oninput=function(){
    //do something
}  

上面两种写法都可以,android和ios系统都能满足!

相关文章

网友评论

      本文标题:IOS系统兼容input keyup事件

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