在我的html5 / css3网站中,我需要从外部主机/服务器加载<form>
并将其显示在我页面的某个位置。我已经读过不推荐使用的帧。什么是另类??我该怎么做?
感谢
答案 0 :(得分: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