Ionic文本字段中的重定向链接未在浏览器中打开

时间:2018-07-03 08:24:17

标签: ionic-framework

我有一个包含多个可编辑表格的应用程序。

所有这些中都有一个URL字段。我希望它在浏览器窗口中打开该URL。不幸的是,目前它以我的网站URL开头。

ie如果有人输入www.othersite.com,而我的网站URL是www.mysite.com,则单击链接将打开www.mysite.com/www.othersite.com

如何获取打开www.othersite.com的应用?

1 个答案:

答案 0 :(得分:0)

尝试这种方式

添加Cordova Inappbrowser插件并尝试

var ref = cordova.InAppBrowser.open('http://www.othersite.com', '_blank', 'location=yes');

window.open('www.othersite.com','_system','location=no');