我正在尝试在某些网页上开发一个包含几个iframe的应用。
这是我正在使用的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>in.gr</title>
</head>
<script>
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<body style="margin:0;">
<script type="text/javascript" src="cordova.js"></script>
<iframe src="http://www.in.gr" border="0" width="100%" frameborder="0" scrolling="no" onload="resizeIframe(this)" / >
</body>
</html>
我在config.xml里面添加了这个:
<access origin="http://www.in.gr" />
我的问题是,在我的手机上的phonegap应用程序中,iframe显示完美,当我将我的zip上传到https://build.phonegap.com时,它变为空白
有什么想法吗?
答案 0 :(得分:0)
这解决了它,所以任何有兴趣的人都是它!
<content src="http://somesite.com" />
<plugin name="cordova-plugin-whitelist" />
<allow-navigation href="http://somesite.com/*" />
答案 1 :(得分:0)
<access origin="*.www.in.gr"></access><allow-navigation href="*.www.in.gr"></allow-navigation>