HTML嵌套页面abc.htm
<html>
<head>
</head>
<body>
<input type="button" name="Submit2" value="b.htm" onClick="jump.location.href='b.htm'">
<br>
<table width="100%" >
  <tr>
    <td height="209" valign="top">
<iframe id=jump src="a.htm"></iframe></td>
  </tr>
</table>
</body>
</html>默认src:a.htm
<html>
<head>
</head>
<body>
这是a页面
</body>
</html>b.htm
<html>
<head>
</head>
<body>
这是b页面
</body>
</html>各位把abc.htm改为abc.asp,它们刷新的结果不同。