diff options
Diffstat (limited to 'files/de/web/api/document/createattribute/index.html')
-rw-r--r-- | files/de/web/api/document/createattribute/index.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/files/de/web/api/document/createattribute/index.html b/files/de/web/api/document/createattribute/index.html new file mode 100644 index 0000000000..009c6c898d --- /dev/null +++ b/files/de/web/api/document/createattribute/index.html @@ -0,0 +1,76 @@ +--- +title: Document.createAttribute() +slug: Web/API/Document/createAttribute +tags: + - API + - DOM + - Méthode + - Referenz +translation_of: Web/API/Document/createAttribute +--- +<div>{{ ApiRef("DOM") }}</div> + +<p><strong>createAttribute</strong> erstellt einen neuen Attributsknoten und gibt ihn zurück.</p> + +<h2 id="Syntax" name="Syntax">Syntax</h2> + +<pre class="syntaxbox"><em>attribute</em> = document.createAttribute(name) +</pre> + +<h3 id="Parameters" name="Parameters">Parameter</h3> + +<ul> + <li><code>attribute</code> ist ein Attributsknoten.</li> + <li><code>name</code> ist ein String, der den Namen des Attributs enthält.</li> +</ul> + +<h2 id="Example" name="Example">Beispiel</h2> + +<pre class="brush:js"><html> + +<head> +<title> create/set/get Attribut Beispiel</title> + +<script type="text/javascript"> + +function doAttrib() { + var node = document.getElementById("div1"); + var a = document.createAttribute("my_attrib"); + a.value = "newVal"; + node.setAttributeNode(a); + alert(node.getAttribute("my_attrib")); // "newVal" +} + +// Alternative form ohne die Verwendung von createAttribute +//function doAttrib() { +// var node = document.getElementById("div1"); +// node.setAttribute("my_attrib", "newVal"); +// alert(node.getAttribute("my_attrib")); // "newVal" +//} + +</script> +</head> + +<body onload="doAttrib();"> +<div id="div1"> +<p>Some content here</p> +</div> +</body> +</html> +</pre> + +<h2 id="Notes" name="Notes">Bemerkungen</h2> + +<p>Der Rückgabewert ist ein Knoten des Typs <code>attribute</code>. Sobald man diesen wie im vorangegangenen Beispiel hat, kann man ihren Wert festlegen, indem man der <code>nodeValue</code> <em>property</em> einen String zuweist, oder in der alternativen Form durch Benutzung der <a href="/en-US/docs/DOM/element.setAttribute" title="DOM/element.setAttribute">setAttribute()</a> Methode. Der DOM beschränkt auf diese Art nicht, welche Arten von Attributen an das jeweilige Element zugewiesen werden dürfen.</p> + +<h2 id="Specification" name="Specification">Spezifikation</h2> + +<ul> + <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1084891198">createAttribute </a></li> +</ul> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>{{domxref("document.createElement")}}</li> +</ul> |