if(Utils.isMobileDevice()){ // 根据你手机端的打包方式修改这里 if(cordova && cordova.InAppBrowser){ cordova.InAppBrowser.open(url,'_system'); }else{ prompt(url,"你的设备不支持直接打开链接"); } } else { var tool = require('nw.gui'); if(tool && tool.Shell && tool.Shell.openExternal){ tool.Shell.openExternal(url); }else{ window.open(url, '_blank'); } }
if(Utils.isMobileDevice()){
// 根据你手机端的打包方式修改这里
if(cordova && cordova.InAppBrowser){
cordova.InAppBrowser.open(url,'_system');
}else{
prompt(url,"你的设备不支持直接打开链接");
}
} else {
var tool = require('nw.gui');
if(tool && tool.Shell && tool.Shell.openExternal){
tool.Shell.openExternal(url);
}else{
window.open(url, '_blank');
}
}
以前弄的一点小东西 |