2

在我的 html5/css3 网站中,我需要<form>从外部主机/服务器加载一个并将其显示在我页面的某个位置。我读过框架已被弃用。有什么替代方案?,我该怎么做?

谢谢

4

1 回答 1

1

您可以为此使用 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

于 2013-08-21T07:06:34.553 回答