通过HTML框架渲染远程内容!

时间:2009-02-10 10:18:37

标签: html

我想使用html'frame'显示远程内容。我想在一个框架上显示www.news.google.com的内容......怎么做?

3 个答案:

答案 0 :(得分:1)

W3Schools <iframe>标记为page explaining the basics

答案 1 :(得分:1)

<iframe src="http://news.google.com" height="500" width="500">
text here if iframe is unable to display
</iframe>

相应地更改大小值。

答案 2 :(得分:0)

src<iframe>的{​​{1}}属性设置为您要显示内容的网址。