Removes an attribute specified with the name property from an element using the attributes collection.
dhtml语法
newretnode = attributes.removenameditem(sname)
parameters
sName |
Required.
String that specifies the name of an attribute to remove. |
Return Value
Returns an attribute removed from the document if successful, otherwise null.
Remarks
An attribute that is removed with this method reverts to the default value of the attribute when applicable.
DHTML代码范例
The following example shows how to use the this method to remove an attribute from an element.
<HTML>
<HEAD>
<SCRIPT>
function removeAttrib()
{
var oAttrColl = myDIV.attributes;
oAttrColl.removeNamedItem("TITLE");
}
</SCRIPT>
</HEAD>
<BODY>
<DIV onclick="removeAttrib();" ID="myDIV" TITLE="THIS IS A TOOLTIP">
Click this DIV and the ToolTip will be inactivated.</DIV>
</BODY>
</HTML>
This feature requires Microsoft® Internet Explorer 6 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
是否符合公共标准
This method is defined in
World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 .
Applies To