Sets or retrieves the class of the object. dhtml语法 HTML | <ELEMENT CLASS
= sClass... >
|
---|
Scripting | object.className [ = sClass ] |
---|
DHTML可能的值 sClass | String that
specifies or receives the class or style rule. |
The property is read/write.
The property has no default value. Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see about dynamic properties.
remarks the class is typically used to associate a particular style rule in a style sheet with the element. as of microsoft® internet explorer 5, you can apply multiple styles to an element by specifying more than one style for the class attribute. to apply multiple styles to a single element, use the following syntax: <ELEMENT CLASS = sClass [ sClass2 [ sClass3 ... ] ] ... > When multiple styles are specified for an element, a conflict could develop if two or more styles define the same attribute differently. In this case, you can resolve the conflict by applying styles to the element in the following order, according to the Cascading Style Sheets (CSS) selector used to define the style.
- Element
- CLASS
- id
- inline styles
when two or more selectors pertain to an element, a style defined later takes precedence over a style defined earlier. for more information, see cascading style sheets in internet explorer 4.0.
DHTML代码范例
This example uses the className attribute to apply one or more styles to an HTML element. <HEAD>
<STYLE TYPE="text/css">
P {font-size: 24pt;}
.redText {color: red;}
.blueText {color: blue;}
.italicText {font-style: italic;}
</STYLE>
</HEAD>
<BODY>
<P>
Large text, no class specified, one implied.
</P>
<P CLASS="redText">
Large text, .redText class specified.
</P>
<P CLASS="blueText italicText">
Large text, .blueText and .italicText classes specified.
</P>
</BODY> This feature requires Microsoft® Internet Explorer 5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
是否符合公共标准
This property is defined in
HTML 4.0 and
is defined in
World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 .
Applies To |
A,
ACRONYM,
ADDRESS,
APPLET,
AREA,
B,
BDO,
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,
HEAD,
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,
ISINDEX,
KBD,
LABEL,
LEGEND,
LI,
LISTING,
MAP,
MARQUEE,
MENU,
nextID,
NOBR,
OBJECT,
OL,
OPTION,
P,
PLAINTEXT,
PRE,
Q,
RT,
RUBY,
S,
SAMP,
SELECT,
SMALL,
SPAN,
STRIKE,
STRONG,
SUB,
SUP,
TABLE,
TBODY,
TD,
TEXTAREA,
TFOOT,
TH,
THEAD,
TR,
TT,
U,
UL,
VAR,
XMP | |
|