js scheme 打開手機app的方法

1.iframeapp

function schemeUrl(url,callbak){
    var ifr = document.createElement("iframe");
    ifr.src = url; /***打開app的協議,如zhe800://goto_home***/
    ifr.style.display = "none"; 
    document.body.appendChild(ifr);
    //app沒反應1s後執行另外的方法
    window.setTimeout(function(){
      document.body.removeChild(ifr);
      if(typeof callbak == 'function'){callbak();}
    },1000)
};
相關文章
相關標籤/搜索