Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


Availability


DOM Level 1 Core


Synopsis


Attr setAttributeNode(Attr newAttr)
throws DOMException;

Arguments


newAttr

The Attr node that represents the attribute to be added or whose
value is to be modified.


Returns


The Attr node that was replaced by
newAttr, or null if no
attribute was replaced.


Throws


This method may throw a DOMException with a code
of the following values:

INUSE_ATTRIBUTE_ERR

newAttr is already a member of the
attribute set of some other Element node.

NO_MODIFICATION_ALLOWED_ERR

The Element node is read-only and does not allow modifications to its
attributes.

WRONG_DOCUMENT_ERR

newAttr has a different
ownerDocument property than the Element on which
it is being set.


Description


This method adds a new Attr node to the set of attributes of an
Element node. If an attribute with the same name already exists for
the Element, newAttr replaces that
attribute, and the replaced Attr node is returned. If no such
attribute already exists, this method defines a new attribute for the
Element.

It is usually easier to use setAttribute( )
instead of setAttributeNode( ). However, you
should use setAttributeNode( ) when you need to
define an attribute whose value contains an entity reference for an
XML document.


See Also


Attr, Element.setAttribute( )

/ 844