document.ready(function()不适用于Android设备

时间:2016-02-18 08:42:29

标签: javascript android

我正在使用document.ready()函数它在windows和ios设备上工作正常但不能在android设备上运行。请帮我 。

     //在js文件夹中的min.js                // jquery.js

$(document).ready(function(){ //
        $("#ios").hide();         // to hide ios div  to hide android div
        $("#android").hide();        // $("#iOSP").hide(); ios heading div
     var userAgent = navigator.userAgent || navigator.vendor || window.opera;    
// user agent 
    if( userAgent.match( /iPad/i ) || userAgent.match( /iPhone/i ) || userAgent.match( /iPod/i ) )  // // user agent checks if device is ios 
    {
        $("#ios").show(); // when ios found showing ios div 
        $("#android").hide(); // and hiding  android div
    }else 
    { 
        $("#ios").hide();  // other wise hide  and  
        $("#android").show();  // show android
        $("#iOSP").hide();     // ios div

    }

// This code is running fine on ios device and also on desktop with os //widows7 

[enter link description here][1]
}); 


</script>

0 个答案:

没有答案