博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.NET同一个页面父容器与子容器通信方案
阅读量:4965 次
发布时间:2019-06-12

本文共 1906 字,大约阅读时间需要 6 分钟。

主界面:

关键主页面代码:

---------------以下js脚本(关键代码)----------- //绑定修改的超链接 function bindEditLinkClickEvent() { $(".editLink").click(function () { var newsId = $(this).attr("newsId"); //getNews2EditForm(newsId); //从后台加载数据然后把数据放到修改文本框上去 //弹出对话框之前,把iframe标签的src属性设置成修改页面地址 $("#editFrame").attr("src", "EditNews.aspx?id="+newsId); showEditDialog(); //弹出编辑div }); }; //弹出编辑div function showEditDialog() { $("#EditDiv").css("display", "block"); $("#EditDiv").dialog({ title: "修改对话框", width: 500, height: 500, modal: true, collapsible: true, minimizable: true, maximizable: true, resizable: true, buttons: [{ text: "修改", iconCls: "icon-add", handler: submitChildEditFrm }, { text: "关闭", iconCls: "icon-cancel", handler: function () { $("#EditDiv").dialog("close"); } }] }); } //异步提交子页面的表单 function submitChildEditFrm() { //先拿到子容器的windows对象,并调用子容器的js函数 var domFrame = $("#editFrame")[0]; domFrame.contentWindow.submitFrm(); };

 子容器代码:

新闻标题
新闻内容
//-----以下JS脚本-------

搞定~~

转载于:https://www.cnblogs.com/chenyanbin/p/11166294.html

你可能感兴趣的文章
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>