首页 > Web开发 > 详细

JS_获取和失去焦点事件(onfocus和onblur)

时间:2021-05-16 00:17:19      阅读:35      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        input{
            color: #999;
        }
    </style>
</head>
<body>
    <input type="text" value="手机">

    <script>
        //获取元素 程序处理
        var input = document.querySelector(‘input‘);
        input.onfocus = function(){
            if(this.value == "手机"){
                this.value = "";
            }
            //获得焦点时 让文本框中的值变成黑色
            this.style.color = "#333";
        }

        input.onblur = function(){
            if(this.value == ""){
                this.value = "手机";
            }
            //失去焦点时 让文本框中的值变成浅色
            this.style.color = "#999";
        }
    </script>
</body>
</html>

 

JS_获取和失去焦点事件(onfocus和onblur)

原文:https://www.cnblogs.com/wuyuchuan/p/14772550.html

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