0

我正在尝试 iframe google.com 我已经尝试了几十种组合,但页面一直空白。

<script type="text/javascript">

var urlPath=http://google.com;
document.write('<iframe scrolling="yes" height="350" width ="350" src="'+urlPath+'"><\/iframe>');



</script>
4

3 回答 3

1
var urlPath='http://google.com';

只需修复变量值。

于 2012-08-04T16:10:30.827 回答
1
于 2012-08-04T16:23:01.397 回答
0

您的代码中有错误。看到这个 jsFiddle http://jsfiddle.net/davew9999/JqHG9/

var urlPath = "http://www.google.com";
document.write('<iframe scrolling="yes" height="350" width ="350" src="' + urlPath + '"></iframe>');​

不知道你为什么在 JavaScript 中做你可以做

<iframe scrolling="yes" height="350" width ="350" src="http://www.google.com"></iframe>

需要注意的一点是,http://www.google.com不会加载到 iFrame 中,正如 Greg Rozmarynowycz 的评论中提到的那样,Google 不允许您将其加载到非 Google 托管的 iFrame 中. 将 src 更改为http://www.amazon.com以查看代码是否有效。

于 2012-08-04T16:17:45.660 回答