问答详情
源自:2-1 静态页面分析

老师有源码吗

老师有源码吗

提问者:黑客洗白者 2014-11-21 14:21

个回答

  • qq_此生不换_4
    2015-12-23 12:46:01

     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;

                }

                

                

               

            }