总结:
js中 事件是不加括号的,什么时候加括号,什么时候不加括号。这个东西有点疑惑。
window.onload、text.onkeyup,text.value.length这些事件和属性是不加括号的。 什么需要加括号?
代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>微博输入</title>
<style type="text/css">
body{
font-size:12px;
}
.box{
width: 600px;
height: 160px;
border: 10px solid pink;
margin: 0px auto;
padding: 10px;
}
.box img{
float:left;
}
.box1{
float:left;
margin-left: 255px;
width: 150px;
height:24px;
text-align: right;
font-size:14px;
color:#888;
}
.box1 span{
font-size: 16px;
font-weight: bold;
}
#text{
width:600px;
height:100px;
border: 1px solid #888;
margin-top: 5px;
}
.box #sp1, #sp2, #sp3, #sp4, #sp5, #sp6{
float:left; width:30px; height:32px; line-height: 32px; padding-left: 26px;
}
#sp1{
background: url('images/an5.png') no-repeat left center;
}
#sp2{
background: url('images/an4.png') no-repeat left center;
}
#sp3{
background: url('images/an3.png') no-repeat left center;
}
#sp4{
background: url('images/an2.png') no-repeat left center;
}
#sp5{
background: url('images/an1.png') no-repeat left center;
width:40px;
}
#sp6{
margin-left:150px; margin-right:15px; color: #888;
}
#btn{
float:left; width:80px; height:30px; border:none;
background: #ffc09f; color:#fff ; border-radius: 5px;
}
</style>
<script type="text/javascript">
var text, number, m=140, btn;
window.onload = function(){
text = document.getElementById('text');
number = document.getElementById('number');
btn = document.getElementById('btn');
text.onkeyup = function countN(){
m = 140 - text.value.length;
if(m<0){
number.style.color = "red";
} else {
number.style.color = "#888";
}
number.innerHTML = m;
}
btn.onclick = function(){
if(m==140){
alert('发布内容不能为空');
text.focus();
} else if(m<0) {
alert('内容字数超限');
text.focus();
} else{
alert('发布成功');
text.value="";
number.innerHTML = 140;
}
countN();
}
}
</script>
</head>
<body>
<div class="box">
<img src="images/12.png">
<div class="box1">还可以输入 <span id="number">140</span>字</div>
<textarea id="text"></textarea>
<span id="sp1">表情</span>
<span id="sp2">图片</span>
<span id="sp3">视频</span>
<span id="sp4">话题</span>
<span id="sp5" >长微博</span>
<span id="sp6">公开</span>
<input type="button" name="" value="发布" id="btn">
</div>
</body>
</html>