首页 > 代码库 > JS-微博发布
JS-微博发布
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>微博发布</title>
<style type="text/css">
*{
padding: 0;
margin: 0;
}
ul {
list-style: none;
}
.box {
width: 600px;
height: auto;
margin: 100px auto;
text-align: center;
padding: 30px 0;
}
.box textarea {
width: 450px;
resize: none; /*设置文本不能过拖动*/
}
.box li {
width: 450px;
line-height: 30px;
border-bottom: 1px dashed #ccc;
margin-left: 80px;
text-align: left;
}
.box li a {
float: right;
}
</style>
<script type="text/javascript">
window.onload = function (){
var btn = document.getElementsByTagName("button")[0];
var txt = document.getElementsByTagName("textarea")[0];
var ul = document.createElement("ul");
btn.parentNode.appendChild(ul);
btn.onclick = function (){
//1.需要判断文本中是否有内容
if(txt.value =http://www.mamicode.com/=""){
alert("亲!内容不能为空哦!!");
return false; // 让操作就在这个地方终止
}
var newli = document.createElement("li");
newli.innerHTML = txt.value +"<a href=‘javascript:;‘>删除</a>";
ul.appendChild(newli);
//清空输入框
txt.valuehttp://www.mamicode.com/= "";
var aa = document.getElementsByTagName("a");//获取所有的a标签
for(var i = 0;i<aa.length;i++){
aa[i].onclick = function () {
this.parentNode.remove();
}
}
}
}
</script>
</head>
<body>
<div class="box">
微博发布:<textarea name="" id="" cols="30" rows="10"></textarea>
<button>发布</button>
</div>
</body>
</html>
JS-微博发布