The use of the SetAttribute () function is explained in detail:
The setattribute () function is useful for dynamically creating elements of an element's properties, which can be used to dynamically set the attributes of an element, as described below.
Syntax structure:
SetAttribute (name, value)
1). Name indicates the property to set.
2). Value represents the property value.
The code example is as follows:
<!DOCTYPE HTML> <HTML> <Head> <MetaCharSet= "Utf-8"> <Metaname= "Author"content= "http://www.softwhy.com/" /><Head><title>Ant Tribe</title><styletype= "Text/css">#mytest{width:100px;Height:100px;Background-color:Green;}</style><Scripttype= "Text/javascript">window.onload=function(){ varOdiv=Document.createelement ("Div"); Odiv.setattribute ("ID","mytest"); Document.body.appendChild (Odiv);}</Script></Head><Body></Body></HTML>
The above code creates a DIV element and uses the setattribute () function to set the ID property of this element, and then uses the ID selector to set the style of the Div.
The use of setattribute is basically the case, but this function has browser compatibility issues, such as the IE7 and IE6 in the lower version of the browser to set the class attribute of the element exists, there is not much to be introduced, in particular, see Whether IE6 and IE7 support the setattribute () function section.
The original address is: http://www.softwhy.com/forum.php?mod=viewthread&tid=8307
For more information, refer to: http://www.softwhy.com/javascript/
SetAttribute () functions are explained in more detail