|
同样的代码,android的是可以进行跳转,ios点击没反应
Model.prototype.button1Click = function(event){
// window.location.href = "*****://?username=hlb";
appavailability.check({
ios:"****://",
android:"com.****.oa"
}),
function(){
var ifr = document.createElement("iframe");
ifr.src="******://?username=hlb";
ifr.style.display="none";
document.body.appendChild(ifr);
window.setTimeout(function(){
document.body.removeChild(ifr);
}, 1000);
},
function(){
justep.Util.hint("将跳转到下载页");
window.setTimeout(function(){
window.open("https://******","_system");
}, 1000);
}
}; |
|