首页 > 其他 > 详细

输入框事件处理

时间:2018-09-09 13:17:00      阅读:182      评论:0      收藏:0      [点我收藏+]
  • 输入框获取焦点事件:onfocus
  • 输入框失去焦点事件:onblur

代码示例:

<body>
        <input type="text" placeholder="请输入任意内容" id="input">
        <script>
          //获取DOM元素
           var input=document.getElementById("input");
           //获取焦点
           input.onfocus=function(){
             this.style.width="400px";
             this.style.height="50px";
             this.style.border=‘2px solid yellow‘;

           }
           //失去焦点
           input.onblur=function(){
            this.style.color="blue";
            this.style.width="200px";
           }
        </script>
</body>

 

输入框事件处理

原文:https://www.cnblogs.com/zhang-jiao/p/9612963.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!