有这样的代码: <iframe frameborder="0" scrolling="no" src="body.htm" width="778" height="710" name="m_body"></iframe> 如何在body.htm里改变<iframe>的高度! --------------------------------------------------------------- <body onload="parent.document.all.m_body.style.height='4000'"> |
给iframe(designMode="on")中的文字设置字体、字号、颜色
<iframe id=demo></iframe> <script language=javascript>demo.document.designMode="on";</script> <script language=javascript> var str = "demo.document.body.style.color='red';"; str += "demo.document.body.style.fontSize='12px';"; str += "demo.document.body.style.fontFamily='宋体';"; setTimeout(str, 100); </script> |
posted on 2006-04-03 15:32
汪杰 阅读(998)
评论(0) 编辑 收藏 引用 所属分类:
hengxing网站js