老师有源码吗

来源:2-1 静态页面分析

黑客洗白者

2014-11-21 14:21

老师有源码吗

写回答 关注

1回答

  • 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;

                }

                

                

               

            }


人人网评论功能

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

27694 学习 · 147 问题

查看课程

相似问题

HTML源码

回答 3

JS源码

回答 2

源码地址??

回答 1