zoukankan      html  css  js  c++  java
  • 显示隐藏文本框内容

    当鼠标点击文本框时,里面的默认文字隐藏,当鼠标离开文本框时,里面的文字显示。

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
        <style>
            input {
                color: #999;
            }
        </style>
    </head>
    
    <body>
        <input type="text" value="手机">
        <script>
            // 1.获取元素
            var text = document.querySelector('input');
            // 2.注册事件 获得焦点事件 onfocus 
            text.onfocus = function() {
                    // console.log('得到了焦点');
                    if (this.value === '手机') {
                        this.value = '';
                    }
                    // 获得焦点需要把文本框里面的文字颜色变黑
                    this.style.color = '#333';
                }
                // 3. 注册事件 失去焦点事件 onblur
            text.onblur = function() {
                // console.log('失去了焦点');
                if (this.value === '') {
                    this.value = '手机';
                }
                // 失去焦点需要把文本框里面的文字颜色变浅色
                this.style.color = '#999';
            }
        </script>
    
    </body>
    
    </html>
  • 相关阅读:
    Poj(1703),种类并查集
    Poj(2236),简单并查集
    Poj (3239),m皇后问题
    Poj(1521),哈夫曼编码
    NYOJ(680),摘枇杷,(暴力,或者二分搜索)
    NYOJ(42)欧拉图
    数集合有多少个TOJ(2469)
    HDU(1016),打素数环
    HDU(4394),数论上的BFS
    Poj(2225),三维BFS
  • 原文地址:https://www.cnblogs.com/fuyunlin/p/14440120.html
Copyright © 2011-2022 走看看