为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

 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;

            }

            

            

           

        }


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
人人网评论功能
  • 参与学习       27694    人
  • 解答问题       147    个

仿人人网评论,让你的网页活跃起来,赶快来学习让功能的实现吧

进入课程

老师有源码吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信