Home > Web Front-end > JS Tutorial > body text

How to dynamically load iframe

巴扎黑
Release: 2017-05-21 18:49:22
Original
2207 people have browsed it
服务器端生成
<%
if ..... then
response.write "<iframe name=frame1 src=xxx.html width=0 height=0>"
end if
if ..... then
response.write "<iframe name=frame2 src=xxx.html width=0 height=0>"
end if
%>

客户端生成
<p id=p1></p>
<script language=vbscript>
if .... then
 str="<iframe name=frame1 src=xxx.html width=0 height=0>"
end if
if ... then
str=str&"<iframe name=frame2 src=xxx.html width=0 height=0>"
end if
生成IFRMAE
document.all("p1").innerhtml=str

给IFRAME里面的表单控件赋值。
document.all("frame1").document.all("xxx").value=xxx


提交时
document.all("frame1").form1.submit()
document.all("frame2").form1.submit()
</script>


以上方法说明了一个思路,没有经过验证,请自行验证。
Copy after login

The above is the detailed content of How to dynamically load iframe. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!