怎样实现动态加载iframe
程序员文章站
2022-04-30 10:06:58
...
服务器端生成 <% 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> 以上方法说明了一个思路,没有经过验证,请自行验证。
以上就是怎样实现动态加载iframe的详细内容,更多请关注其它相关文章!
推荐阅读
-
Angular ui-roter 和AngularJS 通过 ocLazyLoad 实现动态(懒)加载模块和依赖
-
vue+echarts实现动态绘制图表及异步加载数据的方法
-
动态加载css方法实现和深入解析
-
Spring Cloud Gateway的动态路由怎样做?集成Nacos实现很简单
-
AngularJS实现根据变量改变动态加载模板的方法
-
滚动条的监听与内容随着滚动条动态加载的实现
-
php+ajax实现无刷新动态加载数据技术
-
c# 动态加载dll文件,并实现调用其中的方法(推荐)
-
SpringSecurity动态加载用户角色权限实现登录及鉴权
-
c# 动态加载dll文件,并实现调用其中的简单方法