1. 程式人生 > >重新載入父頁中iframe的方法

重新載入父頁中iframe的方法

 

1:window.parent.frames[1].location.reload(); //適用於只有一個iframes;

2:window.parent.frames. getAllRoom.location.reload(); //適用於多個或一個iframes;

3:window.parent.frames. [“getAllRoom”].location.reload();

4: window.parent.frames. item(1).location.reload();

5:window.parent.frames.item(‘getAllRoom’).location.reload();

6:window.parent. getAllRoom.location.reload();

7:window.parent[“getAllRoom”].location.reload();

注:第1,4適用於只有一個iframe,當有多個iframe時,座標應改為第n個,2,3,5,6,7適用多個或者一個iframe時