En son web geliştirme öğreticiler
 

HTML DOM setAttributeNode() Method

<Eleman Nesne

Örnek

Set class bir öznitelik düğümü <h1> elemanı:

var h1 = document.getElementsByTagName("H1")[0];   // Get the first <h1> element in the document
var att = document.createAttribute("class");       // Create a "class" attribute
att.value = "democlass";                           // Set the value of the class attribute
h1.setAttributeNode(att);                          // Add the class attribute to <h1>

öznitelik düğümü ayarlamadan önce:

Hello World

öznitelik düğümü ayarladıktan sonra:

Hello World

Kendin dene "

Daha "Try it Yourself" Aşağıdaki örnekler.


Tanımı ve Kullanımı

setAttributeNode() metodu ekler specified bir öğeye öznitelik düğümü.

Eğer specified nitelik zaten var, bu yöntem değiştirir.

Bu yöntemin dönüş değeri bir Attr amacıdır. Daha fazla bilgi için, bkz HTML DOM Özelliği Object .

Ayrıca bkz setAttribute() metodu.

Ipucu: removeAttributeNode() bir eleman ile ilgili bir özellik düğümü çıkarmak için bir yöntem.


Tarayıcı Desteği

Yöntem
setAttributeNode() Evet Evet Evet Evet Evet

Sözdizimi

element .setAttributeNode( attributenode )

Parametre Değerleri

Parametre tip Açıklama
attributenode Attr object Gereklidir. Eklemek istediğiniz nitelik düğümü

Teknik detaylar

Geri dönüş değeri: Temsil eden bir Attr amacı, replaced öznitelik düğümü, varsa, aksi takdirde null
DOM Sürüm Çekirdek Seviye 1 Eleman Nesne

Örnekler

Diğer Örnekler

Örnek

Set href bir öznitelik düğümü <a> elemanı:

var anchor = document.getElementById("myAnchor");  // Get the <a> element with id="myAnchor"
var att = document.createAttribute("href");        // Create a "href" attribute
att.value = "http://www.w3ii.com";            // Set the value of the href attribute
anchor.setAttributeNode(att);                      // Add the href attribute to <a>

öznitelik düğümü ayarlamadan önce:

Go to w3ii.com

öznitelik düğümü ayarladıktan sonra:

Kendin dene "

İlgili Sayfalar

HTML Eğitimi: HTML Özellikleri

HTML DOM Referans: HTML DOM Nesne Özellik

HTML DOM Referans: href="met_element_setattribute.html"> setAttribute() Method

HTML DOM Referans: href="met_document_createattribute.html">document. createAttribute() Method href="met_document_createattribute.html">document. createAttribute() Method

HTML DOM Referans: Mülkiyet .value nitelik

HTML DOM Referans: href="met_element_getattributenode.html"> getAttributeNode() Method

HTML DOM Referans: href="met_element_removeattributenode.html"> removeAttributeNode() Method


<Eleman Nesne