js获取或者设置当前页面加载iframe页面中元素属性方法:
假设当前页面为index.html;
页面调用iframe代码:<iframe id="iframeChild" allowTransparency="true" frameborder="0" height="330" scrolling="no" src="main.html" width="100%"></iframe>
main.html页面代码为:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>js获得iframe页面标签并设置属性方法</title>
</head>
<body>
<div id="msty">
字体颜色设置
</div>
</body>
</html>
此时我们对main.html页面中的文字设置红色字体,JS代码为:
<script language="javascript">
window.onload=function(){
document.getElementById('iframeChild').contentWindow.document.getElementById('msty').style.color="red";
}
</script>
其他例子:
window.onload=function(){
document.getElementById('iframe1').contentWindow.document.getElementById('btn1').onclick=function(){alert(123);return false;};
};