如圖所示簡易留言板,也就是自娛自樂版,說白了就是練習(xí)dom操作。
js使用dom操作實現(xiàn)簡單留言板的方法三聯(lián)
要點一:document.createelement(標(biāo)簽名) 新建元素
要點二:父元素.appendchild(元素) 把新建的元素插入到頁面的標(biāo)簽中(在標(biāo)簽的最后一個顯示),這樣才會在瀏覽器中顯示出來
要點三:父元素.insertbefore(元素,要插入哪個元素的前面) 把新建的元素插入到頁面中指定的標(biāo)簽前面,這樣后面輸入的內(nèi)容才會顯示到前面
要點四:父元素.removechild(元素) 刪除指定元素
下面,上代碼:
代碼如下:
<!doctype html>
<html>
<head>
<meta charset=utf-8 />
<title>無標(biāo)題文檔</title>
<script>
window.onload = function(){
var omsg = document.getelementbyid(msg);
var obtn = document.getelementbyid(btn);
var omsg_c = document.getelementbyid(msg_c);
var oul = document.createelement(ul);
omsg_c.appendchild(oul);
obtn.onclick = function(){
var sval = omsg.value;
var oli = document.createelement(li);
oli.innerhtml = sval + <span>刪除</span>;
var oli1 = oul.getelementsbytagname(li);
if(oli1.length>0){
oul.insertbefore(oli,oli1[0]);
}else{
oul.appendchild(oli);
}
omsg.value='';
var ospan = document.getelementsbytagname(span);
for(var i=0; i<ospan.length; i++){
ospan[i].onclick = function(){
oul.removechild(this.parentnode);
}
}
}
}
</script>
</head>
<body>
<h1>簡易留言板</h1>
<input id=msg type=text size=40 value=>
<input id=btn type=button value=留言>
<div id=msg_c></div>
</body>
</html>