【发布时间】:2013-08-23 10:21:49
【问题描述】:
在我的 html5/css3 网站中,我需要从外部主机/服务器加载 <form> 并将其显示在我页面的某个位置。我读过框架已被弃用。有什么替代方法?,我该怎么做?
谢谢
【问题讨论】:
-
框架集可能已被弃用。 iframe 很好。其实framesets were deprecated in favor of iframes.
在我的 html5/css3 网站中,我需要从外部主机/服务器加载 <form> 并将其显示在我页面的某个位置。我读过框架已被弃用。有什么替代方法?,我该怎么做?
谢谢
【问题讨论】:
您可以为此使用 iframe:
<iframe src="http://example.com/form.php" name="myform"> // or src="path/to/your/form.php"
// the content of your Iframe goes here...
</iframe>
http://www.quackit.com/html_5/tags/html_iframe_tag.cfm
http://webdesign.about.com/od/iframes/a/html5-iframe-attributes.htm
【讨论】: