我想在我的应用程序中嵌入一个外部网站,所以我在这里使用标签进行了尝试:
<iframe src="http://www.uniteich.at" frameborder="0" width="420" height="315"></iframe>
但我收到以下错误:“不安全的 JavaScript 尝试从带有 URL http://www.uniteich.at/的框架访问带有 URL content://io.trigger.forge2dd999d0f14b11e1bc8612313d1adcbe/src/index.html 的框架。域、协议和端口必须匹配。”
那么有没有一个很好的解决方案来使用 trigger.io 在 ios/android 应用程序中嵌入一个网站?
提前致谢,
安内
编辑:好的,为了更清楚我想要什么:我只想在用户点击底部的特定标签栏按钮时加载一个外部网站。我做了这个事件处理程序:
var dessertButton = forge.tabbar.addButton({
text: "Uniteich",
icon: "img/strawberry.png",
index: 2
}, function (button) {
button.onPressed.addListener(function () {
//LOAD EXTERNAL WEBSITE IN CONTENT CONTAINER HERE
});
});
这有可能吗?