在离子中打开外部链接

时间:2016-09-07 17:08:33

标签: javascript angularjs ionic-framework

我无法在离子应用中正确打开外部链接。

我有一个包含网址event.orglink

的事件模型

如果我有这样的url字符串,我可以加载一个链接;

<a class="item" href="#" onclick="window.open('http://www.google.com/', '_system', 'location=yes'); return false;">
 Open link
</a>

但是我无法从我的模型中正确打开链接......

<h4>
    <a href="#" onclick="window.open({{event.orglink}}, '_system', 'location=yes');"> {{event.orginfo}}</a>
</h4>

如何使用event.orglink中的window.open网址?

0 个答案:

没有答案