0

当我在我正在使用的应用程序上插入外部链接时

window.open('http://www.google.com', '_blank', 'location=yes');

但我有一些提要,例如我有全文段落,里面有链接

<a href="http://www.google.com" >Google</a>

当我打开这样的链接并返回应用程序时,未加载 css 和 js。

我想像第一个例子一样打开我的链接,有解决方案吗?

谢谢

4

2 回答 2

1

您可以使用 onclick 事件在锚标记上打开子浏览器。

<a href="#" onclick="openInAppBrowser('http://google.com');">Google</a>

(将 Url 作为参数传递给函数)

并在 javascript 中创建一个这样的函数

function openInAppBrowser(url){
  window.open(url, '_blank', 'location=yes');
}
于 2013-02-20T10:19:10.937 回答
0

你在使用 jQuery Mobile 吗?如果是这样,请尝试使用以下标签:

 <a href="http://www.google.be/" rel="external">Google</a>
于 2013-02-20T09:55:17.573 回答