iframe 的使用

  1.  new Ext.Panel({        
  2.   
  3.               renderTo:"hello-dialog",  
  4.   
  5.               id:"hello-dialog",  
  6.   
  7.               title:"面板头部header",         
  8.   
  9.               width:300,      
  10.   
  11.               height:200,           
  12.   
  13.               html:'< iframe name="main" src="test.jsp"></iframe>',        
  14.   
  15.               tbar:[{text:'顶部工具栏topToolbar'}],         
  16.   
  17.               bbar:[{text:'底部工具栏bottomToolbar'}],      
  18.   
  19.               buttons:[{text:"按钮位于footer"}]         
  20.   
  21.            });  
  22.   当需要修改上边 iframe 中  src 中的 test.jsp 的时候,或者是向 test.jsp 传入新的参数的时候。
  23. 我们可以 用如下方式 
 parent.main.location.href 来修改和使用。
可以用 alert( parent.main.location.href); 查看其中的值

你可能感兴趣的:(iframe)