动态加载iframe_Javascript教程-查字典教程网
动态加载iframe
动态加载iframe
发布时间:2016-12-29 来源:查字典编辑
摘要:服务器端生成客户端生成if....thenstr=""endifif...thenstr=str&""endif生成IFRMAEdocume...

服务器端生成 <% 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 %> 客户端生成 <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 提交时 document.all("frame1").form1.submit() document.all("frame2").form1.submit() </script> 以上方法说明了一个思路,没有经过验证,请自行验证。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类