|
InAppBrowser插件在IOS里调用如何设置打开电脑网页默认以整个网页的缩小方式打开, 跟安卓的效果一样, 现在IOS 打开只显示页面的一部分 ,请问如何设置 安卓设置: if(justep.Browser.isX5App && justep.Browser.isAndroid) {
ref=window.open(url,"_blank",'location=yes,toolbar=yes,closebuttoncaption=yes,zoom=yes');
} else {//toolbarposition=top,enableViewportScale=yes,
ref=window.open(url, '_blank', 'location=yes,toolbar=yes,closebuttoncaption=关闭');
} 苹果的使用 ref=window.open(url, '_blank', 'location=yes,toolbar=yes,closebuttoncaption=关闭'); 请大家多多指教! |
|