主页的HTML Code:
<iframe src="1.htm" width="100" height="100" name="iFrame" id="iFrame"></iframe>
1.html的HTML Code:
<html>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<body><h1>XiongYuefei的BLOG</h1></body>
</html>
JS Code:
<script>
window.οnlοad=function(){
var iObj=document.getElementById("iFrame").contentWindow ; //contentWindow属性是指指定的frame或者iframe所在的window对象
alert(iObj.document.getElementsByTagName("h1")[0].firstChild.data);
iObj.document.getElementsByTagName("h1")[0].innerHTML="广州计算机";
}
</script>