如何让这个JavaScript代码在Mac上运行

时间:2014-12-04 17:21:08

标签: javascript ios macos

如何在Safari(Mac OS)上使用此代码

的javascript

document.getElementById("name").src = "../index.html";
document.getElementById("name").herf = "http://google.com/index.html";

HTML

<iframe id="name" src="../imghp" width="30%" height="103" name="iamiframe">
            <p>Your Brower doesn't support iframe so: <a href="http://google.com/imghp">click</a></p>
</iframe>

1 个答案:

答案 0 :(得分:0)

你想要什么?

因为,如果你想在你的iframe中嵌入谷歌页面,并且如果不支持iframe则期望这个错误链接

<!DOCTYPE>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>

<iframe id="name" src="" width="30%" height="103" name="iamiframe">
    <p>Your Brower doesn't support iframe so: <a href="http://google.com/imghp">click</a></p>
</iframe>


<script>
    // or you can directly put in on the src iframe attribute
    document.getElementById("name").src = 'http://www.test.com';
</script>
</body>
</html>

这段代码似乎正常,对你而言?

PS:如果你想直接google.com iframe,我们会处理这个错误:拒绝显示&#39; https://www.google.ca/?gfe_rd=cr&ei=JaOAVIe9GefE8genlYCoAQ&gws_rd=ssl&#39;在一个框架中因为它设置了X-Frame-Options&#39;到#SAMEORIGIN&#39;

希望得到这个帮助,

C