i need to add a element div and within that div i need to add a label element how to do that.....??
var dd=document.getElementById("sample");
var d=document.createElement("div");
d.id="s";
d.innerHTML="welcome"
dd.appendChild(d);
var e=document.createElement("label");
e.innerHTML="success";
var f=dd.getElementById("div");
f.appendChild(e);
i have a div element sample in html..<div id="sample"></div>
within th开发者_开发问答at div element i add another div element with id "s" then i need to a label within the div id="s" how to do that????????
You were close.
var dd = document.getElementById("sample");
var d=document.createElement("div");
d.id = "s";
d.innerHTML="welcome"
var e = document.createElement("label");
e.innerHTML="success";
dd.appendChild(d);
d.appendChild(e);
http://jsfiddle.net/FzhYz/
d.appendChild(e);
Note that HTMLElementNodes do not have a getElementById method.
var dd = document.getElementById("sample");
var d = document.createElement("div");
d.id = "s";
d.innerHTML = "welcome"
var e = document.createElement("label");
e.innerHTML = "success";
d.appendChild(e);
dd.appendChild(d);
dd.appendChild(d).appendChild(s)
精彩评论