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

Posted qiujie-prion

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示隐藏文本框里面的内容相关的知识,希望对你有一定的参考价值。

<!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>

 

以上是关于显示隐藏文本框里面的内容的主要内容,如果未能解决你的问题,请参考以下文章

操作元素之显示隐藏文本框内容

JavaScript+html显示隐藏文本框的内容

网页 使用js或jQuery实现 显示的文本变成输入框以供修改

如下图:如果在密码文本框后加隐藏域是不是是对密码文本框中输入的内容有效?红圈内的输入内容起作用?

案例:模拟京东快递单号查询

案例:模拟京东快递单号查询