当我在我的应用上输入外部链接时,我正在使用
window.open('http://www.google.com', '_blank', 'location=yes');
但是我有一些提要,例如我有完整的文字段落,里面有链接
<a href="http://www.google.com" >Google</a>
当我打开这样的链接时,我回到应用程序中,不会加载css和js。
我想在第一个例子中打开我的链接,是否有解决方案?
由于
答案 0 :(得分:1)
您可以使用onclick事件在锚标记上打开子浏览器。
<a href="#" onclick="openInAppBrowser('http://google.com');">Google</a>
(将Url作为参数传递给函数)
并在javascript中创建这样的函数
function openInAppBrowser(url){
window.open(url, '_blank', 'location=yes');
}
答案 1 :(得分:0)
您使用的是jQuery Mobile吗?如果是这样,请尝试使用以下标记:
<a href="http://www.google.be/" rel="external">Google</a>