1.iframe
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)
};
