js scheme 打开手机app的方法
Posted 甜菜波波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js scheme 打开手机app的方法相关的知识,希望对你有一定的参考价值。
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)
};
以上是关于js scheme 打开手机app的方法的主要内容,如果未能解决你的问题,请参考以下文章