欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

動(dòng)態(tài)加載iframe

 更新時(shí)間:2006年06月16日 00:00:00   作者:  
服務(wù)器端生成
<%
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
%>

客戶(hù)端生成
<div id=div1></div>
<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("div1").innerhtml=str

給IFRAME里面的表單控件賦值。
document.all("frame1").document.all("xxx").value=xxx


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


以上方法說(shuō)明了一個(gè)思路,沒(méi)有經(jīng)過(guò)驗(yàn)證,請(qǐng)自行驗(yàn)證。

相關(guān)文章

最新評(píng)論