首页 > 其他 > 详细

简易留言板

时间:2016-11-21 23:19:54      阅读:265      评论:0      收藏:0      [点我收藏+]

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
window.onload = function(){
    var oTxt = document.getElementById(‘txt‘);
    var oBtn = document.getElementById(‘btn‘);
    var oBox = document.getElementById(‘box‘);
    
    oBtn.onclick = function(){
        var oLi = document.createElement(‘li‘);
        oLi.innerHTML = oTxt.value + ‘<a href="javascript:;">隐藏</a>‘;
        
        if(oBox.children.length){
            oBox.insertBefore(oLi,oBox.children[0]);    
        }else{
            oBox.appendChild(oLi);        
        }
        
        oTxt.value = ‘‘;
        oLi.children[0].onclick = function(){
            oBox.removeChild(this.parentNode);
        }
    }
}
</script>
</head>

<body>
user:<input type="text" value="" id="txt"/>
<input type="button" value="添加" id="btn"/>
<ul id="box"></ul>
</body>
</html>

简易留言板

原文:http://www.cnblogs.com/guolimin/p/6087249.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!