0
点赞
收藏
分享

微信扫一扫

显示隐藏文本框内容

7dcac6528821 2022-04-26 阅读 56
<!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>显示隐藏文本框内容</title>
    <style>
        input {
            color: #999;
        }
    </style>
</head>

<body>
    <input type="text" name="" id="" value="手机">
</body>
<script>
    // 1.获取元素
    var text = document.querySelector('input');
    // 2.注册事件 获得焦点事件 onfocus 
    text.onfocus = function() {
            if (this.value == '手机') {
                this.value = '';
            }
            this.style.color = '#333';
        }
        //获得焦点需要把文本框的里面的文字变黑

    // 3. 注册事件 失去焦点事件 onblur
    text.onblur = function() {

        if (this.value === '') {
            this.value = '手机';
        }
        // 失去焦点需要把文本框里面的文字颜色变浅色
        this.style.color = '#999';
    }
</script>

</html>
举报

相关推荐

0 条评论