美文网首页
案例-模拟快递单号查询

案例-模拟快递单号查询

作者: 新苡米 | 来源:发表于2021-04-17 00:06 被阅读0次

    要求:当我们在文本框中输入内容时,文本框上面自动显示大字号的内容。

    image.png
     <div class="search">
            <div class="con">123</div>
            <input type="text" placeholder="请输入您的快递单号" class="jd">
        </div>
        <script>
            // 获取要操作的元素
            var con = document.querySelector('.con');
            var jd_input = document.querySelector('.jd');
            // 给输入框注册keyup事件
            jd_input.addEventListener('keyup', function() {
                    // 判断输入框内容是否为空
                    if (this.value == '') {
                        // 为空,隐藏放大提示盒子
                        con.style.display = 'none';
                    } else {
                        // 不为空,显示放大提示盒子,设置盒子的内容
                        con.style.display = 'block';
                        con.innerText = this.value;
                    }
                })
            // 给输入框注册失去焦点事件,隐藏放大提示盒子
            jd_input.addEventListener('blur', function() {
                    con.style.display = 'none';
                })
            // 给输入框注册获得焦点事件
            jd_input.addEventListener('focus', function() {
                // 判断输入框内容是否为空
                if (this.value !== '') {
                    // 不为空则显示提示盒子
                    con.style.display = 'block';
                }
            })
        </script>
    

    相关文章

      网友评论

          本文标题:案例-模拟快递单号查询

          本文链接:https://www.haomeiwen.com/subject/msaylltx.html