举例:index.htm<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" id="myjs"></script>
</head>
<body>
<div id="test">这是原来的文字</div>
<iframe style="display:none;" src="myjs.htm"></iframe>
</body>
</html>myjs.htm<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
if(top==self){
location.replace("about:blank");     //关键
}else{
window.parent.document.getElementById("myjs").src="myjs.js";
}
</script>
</body>
</html>myjs.js   //真正的jsfunction doit(){
document.getElementById("test").innerHTML="这是新的文字";
}
window.onload = doit;