当前位置: 代码迷 >> ASP.NET >> Panel中有个Iframe,Iframe中的页面有个Button,小弟我如何实现点击这个Button来隐藏整个Panel
  详细解决方案

Panel中有个Iframe,Iframe中的页面有个Button,小弟我如何实现点击这个Button来隐藏整个Panel

热度:3934   发布时间:2013-02-26 00:00:00.0
Panel中有个Iframe,Iframe中的页面有个Button,我怎么实现点击这个Button来隐藏整个Panel?
Panel中有个Iframe,Iframe中的页面有个Button,我怎么实现点击这个Button来隐藏整个Panel?
请高手们指点指点,在此多谢了。。。。

------解决方案--------------------------------------------------------
假设Panel id=panel1, button id=button1, iframe id=iframe1

js:


button onclick = window.parent.frames[ "iframe1 "].document.getElementById( "panel1 ").display= "none "
------解决方案--------------------------------------------------------

this.Button1.Attributes.Add( "onclick ", "window.parent.document.all( 'panel ').style.display= 'none ' ");
试试看
行不行
  相关解决方案