我正在尝试使用以下代码在InAppBrowser中打开捆绑的html页面
var optionStr = 'location=no,clearcache=yes';
console.log('optionStr-->' + optionStr);
window.open('owp/index.html', '_blank', optionStr);
但是当我在Android设备上运行此操作时,我的控制台上出现以下错误
04-10 15:04:52.193: E/Web Console(15947): Uncaught TypeError: Cannot read property 'NONE' of undefined:24
有人可以帮助我吗?。
答案 0 :(得分:0)
看起来你错过了什么,用以下内容替换,
您可以直接使用推荐的方法
,而不是使用三行var optionStr = window.open("yourHTMLPage.html", "_blank", "location=yes");
此外,您的控制台错误消息不属于给定代码,在其他位置找到“无”。 希望这会有所帮助。