Phonegap外部h​​tml文件

时间:2013-11-26 09:38:17

标签: javascript php cordova

我对此代码有疑问。

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-type" content="text/html; charset=utf-8">
        <script language="javascript">
            function callWeb(){
                document.getElementById("myIframe").src = "MY NEW URL PHP";
            }
        </script>
    </head>
    <body>
        <iframe id="myIframe" src=""></iframe>
        <button onclick="callWeb()">GO</button>
    </body>
</html>

当我尝试执行javascript方法callWeb时,我收到错误:

“拒绝在一个框架中显示'我的新网址PHP',因为它将'X-Frame-Options'设置为'DENY'。”

我首先尝试在网络上执行它,但我感兴趣的是让它在phonegap中运行。

提前致谢。 此致

0 个答案:

没有答案