我有一个包含多个可编辑表格的应用程序。
所有这些中都有一个URL字段。我希望它在浏览器窗口中打开该URL。不幸的是,目前它以我的网站URL开头。
ie如果有人输入www.othersite.com,而我的网站URL是www.mysite.com,则单击链接将打开www.mysite.com/www.othersite.com
如何获取打开www.othersite.com的应用?
答案 0 :(得分:0)
尝试这种方式
添加Cordova Inappbrowser插件并尝试
var ref = cordova.InAppBrowser.open('http://www.othersite.com', '_blank', 'location=yes');
或
window.open('www.othersite.com','_system','location=no');