zoukankan      html  css  js  c++  java
  • 判断是否为苹果手机

    //判断是否为苹果
    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;

    }

  • 相关阅读:
    audio_policy.conf说明(翻译)
    Qt
    linux C
    Linux C
    Linux C
    Qt
    Qt
    JSON
    JSON
    Qt
  • 原文地址:https://www.cnblogs.com/seven077/p/7691403.html
Copyright © 2011-2022 走看看