码迷,mamicode.com
首页 > 移动开发 > 详细

判断是否为苹果手机

时间:2017-10-19 12:52:10      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:txt   false   alert   error   event   set   string   remove   tar   

//判断是否为苹果
var isIPHONE = navigator.userAgent.toUpperCase().indexOf(‘IPHONE‘)!= -1;

// 元素失去焦点隐藏iphone的软键盘
function objBlur(id,time){
if(typeof id != ‘string‘) throw new Error(‘objBlur()参数错误‘);
var obj = document.getElementById(id),
time = time || 100,
docTouchend = function(event){
if(event.target!= obj){
setTimeout(function(){
obj.blur();
document.removeEventListener(‘touchend‘, docTouchend,false);
},time);
}
};
if(obj){
alert("yes IPhone")
obj.addEventListener(‘focus‘, function(){
document.addEventListener(‘touchend‘, docTouchend,false);
},false);
}else{
throw new Error(‘objBlur()没有找到元素‘);
}
}

if(isIPHONE){
var input = new objBlur(‘disTxt‘);
input=null;

}

判断是否为苹果手机

标签:txt   false   alert   error   event   set   string   remove   tar   

原文地址:http://www.cnblogs.com/seven077/p/7691403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!