开发者

how to add element within an element in html

开发者 https://www.devze.com 2023-03-09 06:24 出处:网络
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\");

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)
0

精彩评论

暂无评论...
验证码 换一张
取 消