如何刷新frameset的子窗口

这是页面: 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
   
    <title></title>
    <style>
#leftFrame {border-right:1px solid #a0bfe2}
</style>
</head>
<frameset rows="65,*" cols="*" frameborder="no" border="0" framespacing="0">
    <frame src="" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
    <frameset rows="*" cols="160,*" framespacing="0" frameborder="no" border="0">
        <frame src="" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" />

        <frame src="" name="mainFrame" id="mainFrame" scrolling="Yes" />
    </frameset>
</frameset>
<noframes>
    <body>
    </body>
</noframes>
</html>

这是脚本:

window.parent.topFrame.location.reload();
  window.parent.leftFrame.location.reload();
  window.parent.mainFrame.location.reload();

  window.parent.frames["topFrame"].location.reload();

  window.parent.frames["leftFrame"].location.reload();

  window.parent.frames["mainFrame"].location.reload();

你可能感兴趣的:(html,XHTML,脚本,border)