码迷,mamicode.com
首页 > 其他好文 > 详细

显示隐藏文本框里面的内容

时间:2020-06-01 14:18:36      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:cal   NPU   div   pre   sele   his   ==   tle   nbu   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <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="手机" id="">
    <script>
        //1.获取元素
        var text = document.querySelector(‘input‘);
        //2.注册事件 获得焦点事件
        text.onfocus = function() {
            console.log(‘得到了焦点‘);
            if(this.value === ‘手机‘){
                this.value = ‘‘;
            }
            this.style.color = ‘#333‘;
            
        }
        //3.注册事件 失去焦点 onbur
        text.onblur = function() {
            console.log(‘失去了焦点‘);
            if(this.value != ‘‘);{
                this.value = ‘手机‘;   
            }
            this.style.color = ‘#999‘;
        }

    </script>
</body>
</html>

 

显示隐藏文本框里面的内容

标签:cal   NPU   div   pre   sele   his   ==   tle   nbu   

原文地址:https://www.cnblogs.com/qiujie-prion/p/13024682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!