Pytanie : położenie tekst dynamiczny dom element using JavaScript

I tworzyć dom element w JavaScript kod using the document.createElement metoda.  I być sprawnie sprawnie element ale I być sprawnie the tekst "piędź", "h4" i "a" element.  I próbować the below, ale dostawać JavaScript błąd z the innerText.  Kiedy I usuwać innerText I dostawać jakaś JavaScript erros, jakaś pomysł?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
	var h4 = document.createElement ("h4");	
	h4.setAttribute ("klasa", "ui-widget-chodnikowiec");
	h4.innerText ("Grat");

        var a1 = document.createElement ("a");
	a1.setAttribute ("klasa", "ui-ikona ui-ikona-zoomin");
	a1.setAttribute ("href", "testimages/" + wizerunek [i] .firstChild.nodeValue);
	a1.innerText ("Widok Wielki");

        var piędź = document.createElement ("piędź");
        span.setAttribute ("klasa", "ui-ikona ui-ikona-niszczyć");
	span.innerText ("Grat"); 

Odpowiedź : położenie tekst dynamiczny dom element using JavaScript

ty móc tekst-guzek i appending ono jako dziecko. i myśleć innerText być część the dom.

var myText = document.createTextNode ("Grat");
span.appendChild (myText);
Inne rozwiązania  
 
programming4us programming4us