首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

contentWindow属性是指指定的frame或许iframe所在的window对象

2012-08-27 
contentWindow属性是指指定的frame或者iframe所在的window对象/iframe??htmlbodyscriptvar ifr

contentWindow属性是指指定的frame或者iframe所在的window对象
</iframe>

?

?

<html>
<body>
<script>
var ifr = document.createElement("iframe");
document.body.appendChild(ifr);
var ifrdoc = ifr.contentWindow.document;
var s = fixingHTB.innerHTML;?? //进入可编辑模式前存好
ifrdoc.designMode = "on";???? //文档进入可编辑模式
ifrdoc.open();??????????????????????? //打开流
ifrdoc.write(s);
ifrdoc.close();??????????????????????? //关闭流
ifrdoc.designMode ="off";???? //文档进入非可编辑模式
</script>
</body>

热点排行