代表了居于全局样式表、内嵌样式和 HTML 标签属性指定的格式和样式之上的对象的格式和样式。
DHTML元素属性列表
属性 描述 onOffBehavior 获取表明指定的 Microsoft® DirectAnimation® 行为是否正在运行的对象。
滤镜属性 描述 Alpha 调整对象内容的不透明度。 BlendTrans 以渐隐原始内容的形式显示对象的新内容。 Chroma 将对象内容的指定颜色显示为透明。 DropShadow 创建对象内容的实体阴影,偏移量位于指定方向。这将使得内容看起来是浮动的因此会产生阴影。 FlipH 以沿水平方向翻转的形式显示对象内容。 FlipV 以沿垂直方向翻转的形式显示对象内容。 Glow 在对象边缘外侧添加光晕以便使其看起来像发光的样子。 Gray 以灰度显示对象内容。 Invert 反转对象内容的色调、饱和度和亮度。 Light 在对象的内容上创建灯光效果。 MaskFilter 将对象内容的透明像素显示为彩色遮罩,将非透明像素显示为透明。 MotionBlur 以运动模糊的效果显示对象内容。 Redirect 目前还不支持。 RevealTrans 使用 24 种预先定义的切换效果显现对象的新内容。 Shadow 创建对象内容的实体阴影,偏移量位于指定方向。这将创建阴影效果。 Wave 在对象的内容上执行垂直方向的正弦波扭曲。 Xray 更改对象内容的颜色深度将其以黑白显示。
方法 描述 getAttribute 获取指定标签属性的值。 getExpression 获取给定属性的表达式。 removeAttribute 删除对象的给定标签属性。 removeExpression 从指定属性中删除表达式。 setAttribute 设置指定标签属性的值。 setExpression 设置指定对象的表达式。
注释
runtimeStyle 对象设置并获取对象的格式和样式,并且在过程中覆盖已有的格式和样式。除了比 style 对象的优先级高而且不是永久的,runtimeStyle 对象与 style 对象相等。
DHTML代码举例
下面的例子使用 runtimeStyle 对象来影响 currentStyle 对象,而不是 style 对象。
<SCRIPT> function fnChangeValue(sValue){ if(oDIV.runtimeStyle.backgroundColor == oDIV.style.backgroundColor){ sValue=""; } oDIV.runtimeStyle.backgroundColor = sValue; alert(oDIV.style.backgroundColor + "\n" + oDIV.currentStyle.backgroundColor + "\n" + oDIV.runtimeStyle.backgroundColor); } </SCRIPT> <DIV ID = "oDIV"> 这是一个演示 DIV。 </DIV> <INPUT TYPE = "button" VALUE = "更改颜色" onclick="fnChangeValue('blue')">
标准信息
没有应用于此对象的公共标准。
应用到
a, acronym, address, applet, b, big, blockquote, body, br, button, caption, center, cite, code, col, colgroup, custom, dd, del, dfn, dir, div, dl, dt, em, embed, fieldset, font, form, frame, frameset, hn, hr, html, i, iframe, img, input type=button, input type=checkbox, input type=file, input type=hidden, input type=image, input type=password, input type=radio, input type=reset, input type=submit, input type=text, ins, kbd, label, legend, li, listing, marquee, menu, nobr, object, ol, option, p, plaintext, pre, q, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tr, tt, u, ul, var, XMP
参看
currentStyle