热门搜索 :
考研考公
您的当前位置:首页正文

js判断系统

来源:东饰资讯网
var PlatformUtil ={
    
    ToolUtil:function(){
 
  
        if(cc.sys.isBrowser){
          
            switch(cc.sys.os){

                case cc.sys.OS_ANDROID:
                    console.log("android")
                    break;
                case cc.sys.OS_IOS:
                      console.log("ios")
                    break;
                default:
                   console.log("其他1")
                    break;

            }

        }
        else {
            console.log("其他2")
        }
        // window['platform'] = this.platform; 
    }

}

module.exports = PlatformUtil;
Top