<frame id="right" src="">...
in left frame:
<body onload="parent.document.getElementById('right').src='right.htm'"

解决方案 »

  1.   

    这样好像只能保证左边帧开始Load后再Load右边帧吧?
    我需要的是保证左边帧完全Load完之后再开始Load右边帧!
      

  2.   

    <iframe id="left" src="a.asp">
    <iframe id="right" src="">a.asp:
    <body onload=parent.document.frames["right"].location.replace("b.asp")>试试
      

  3.   

    在a.asp的最后:
    <script>
    parent.document.frames["right"].location.replace("b.asp")
    </script>
    能在a.asp Load 之后 Load b.asp了
      

  4.   

    onload就是下载完毕后才触发的,right的src为空,下载完毕后再改变它的src