abstract:微博输入案例 *{
margin: 0;
padding: 0;
}
.box{
width: 610px;height: 180px;border:10px solid pink;margin: 0 auto;padding:10px;
}
.box1{
float: right;
font-size: 14px;
color: #888888;
}
#text{
width: 606px;
height: 106px;
border: 1px solid #ccc;
margin:5px 0;
}
input{
width: 80px;
height: 30px;
background: #FFC09F;
border-radius: 5px;
color:white;
}
.box #sp1,#sp2,#sp3,#sp4,#sp5,#sp6{
float: left;width: 32px;height: 32px;padding-left: 26px;line-height: 32px;
}
#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: 128px;margin-right:15px;color: #888;border:none;s }
var text,number,m
window.onload=function (){
text=document.getElementById('text')
number=document.getElementById('number')
bt=document.getElementById('bt')
text.onkeyup=function aa(){
m=140-text.value.length
if(m<0){
number.style.color="red"
}else{
number.style.color="#888"
}
number.innerHTML=m;
}
bt.onclick=function(){
if (m==140) {
alert("你还没有输入")
text.focus()
}else if(m<0){
alert("字数太多,不可以发布")
text.focus()
}else{
alert("发布成功")
}
}
}
还可以输入字表情
图片
视频
话题
长微博
公开
Correcting teacher:天蓬老师Correction time:2019-08-27 09:18:12
Teacher's summary:其实,weibo早已取消了字数限制, 但这仍是一个不错的小练习