父框架下的左框架事件刷新右框架

 

#1 :  parent.frames["framename"].reload

#2:用javascript  
  parent.B.refresh  
  
  注:B为所要刷新页面。

#3:<script   language=javascript>self.parent.location.href='B.aspx'</script>  
  这样也可以。  
  B.aspx:为刷新页面。

#4:<!DOCTYPE   HTML   PUBLIC   "-//W3C//DTD   HTML   4.01   Frameset//EN"   "http://www.w3.org/TR/html4/frameset.dtd">  
  <html>  
  <head>  
  <meta   http-equiv="Content-Type"   content="text/html;   charset=gb2312">  
  <title>无标题文档</title>  
  </head>  
   
  <frameset   rows="80,*"   cols="*"     frameborder="NO"   border="0"   framespacing="0">  
      <frame   src="UntitledFrame-2.htm"   name="topFrame"   scrolling="NO"   noresize>  
      <frameset   rows="*"   cols="198,*"   framespacing="0"   frameborder="NO"   border="0">  
          <frame   src="UntitledFrame-3.htm"   name="leftFrame"   scrolling="NO"   noresize>  
          <frame   src="Untitled-1.htm"   name="mainFrame">  
      </frameset>  
  </frameset>  
  <noframes><body>  
  </body></noframes>  
  </html>  
Untitled-1.htm  
   
   
   
  <!DOCTYPE   HTML   PUBLIC   "-//W3C//DTD   HTML   4.01   Transitional//EN"  
  "http://www.w3.org/TR/html4/loose.dtd">  
  <html>  
  <head>  
  <meta   http-equiv="Content-Type"   content="text/html;   charset=gb2312">  
  <title>无标题文档</title>  
  </head>  
  <script>  
  function a()  
  {  
  parent.frames["leftFrame"].location.href='123'  
  }  
  </script>  
  <body>  
  <input   type="button"   name="bun1"   value="提交"   onClick="a()">  
  </body>  
  </html>

你可能感兴趣的:(父框架下的左框架事件刷新右框架)