简易留言板

Posted 小高

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简易留言板相关的知识,希望对你有一定的参考价值。

<!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>

以上是关于简易留言板的主要内容,如果未能解决你的问题,请参考以下文章

JS简易留言板

6.2.13 简易留言板

js+css+html制作简易留言板

简易留言板

简易留言板

微信小程序实现简易留言板