黑客洗白者
2014-11-21 14:21
老师有源码吗
window.onload = function () {
//获取元素
var txt = document.getElementById('txt');
var total = document.getElementById('total');
//输入框获取焦点时
txt.onfocus = function(){
this.style.height = 50 + 'px';
};
//输入框失去焦点时
txt.onblur = function(){
this.style.height = 20 + 'px';
};
//输入框键盘弹起时计算字数
txt.onkeyup = function(){
var len = this.value.length;
total.innerText = len;
}
}
人人网评论功能
27694 学习 · 147 问题
相似问题