<html>
<body>
  <iframe src="a.html" frameborder=1 id="sky" width=90% height=90%>
  <a href="#" onclick="sky.location.reload()">点击刷新iframe中的内容</a>
</body>
</html><html>
<body>
<script language=javascript>
function re()
{
sky.location.reload();
}
</script>
  <iframe src="a.html" frameborder=1 id="sky" width=90% height=90%>
  <a href="#" onclick="re()">点击刷新iframe中的内容</a>
</body>
</html>