我试试这段代码
document.addEventListener("deviceready", function(){
console.log('test');
var root = this;
cb = window.plugins.childBrowser;
if(cb != null) {
console.log('test1');
cb.onLocationChange = function(loc){ root.locChanged(loc); };
cb.onClose = function(){root.onCloseBrowser(); };
cb.onOpenExternal = function(){root.onOpenExternal(); };
cb.showWebPage("http://assas.archus.fr/thumbs/pdf/methodo/sdsdfsd_sdf.pdf");
}
}, false);
但是没有打开浏览器是正常的吗?我所有的 console.log 都会出现
谢谢
编辑:
2.4.0 的代码
window.open('http://assas.archus.fr/thumbs/pdf/methodo/sdsdfsd_sdf.pdf', '_blank', 'location=yes');