문제

In my html5/css3 website I need to load a <form> from an external host/server and display it somewhere on my page. I've read that frames are deprecated. What would be an alternative?, How would I do it?

thanks

도움이 되었습니까?

해결책

You can use Iframes for this:

<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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top