2

私のhtml5/css3 Webサイトで<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 に答える