添加到百度首页
添加收藏 RSS 网站地图 旧版网站
  • 全部
  • 网页特效
  • 建站教程
  • 设计分享
当前位置:首页 > 建站教程 > JavaScript教程 >

js获得iframe页面标签并设置属性方法

时间:2014-01-11      来源:互联网     
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;};

};
 
新手如何快速入门SEO技术-科e互联
相关文章

大家都在看

最新更新