文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

利用JavaScript模拟京东快递单号查询效果

2024-04-02 19:55

关注

1、上面放大框开始是隐藏的,当输入单号后,就显示,并且里面的内容是输入框的内容的字体的放大

<!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>Document</title>
    <style>
        table {
            margin: 20px;
            border: none
        }
        
        p {
            font-size: 15px;
        }
        
        input {
            height: 15px
        }
        
        button {
            background-color: rgb(77, 132, 233);
            border: none;
        }
        
        a {
            text-decoration: none;
            color: white;
            font-size: 15px;
        }
        
        div {
            font-size: 25px;
            width: 100px;
            height: auto;
            border: 1px solid black;
            display: none;
            position: absolute;
            top: 0px
        }
    </style>
</head>
 
<body>
 
    <table>
        <tr>
            <td>
                <p>快递单号</p>
            </td>
            <td> <input type="text" placeholder="请输入您的快递单号"></td>
            <td> <button><a href="">查询</a></button></td>
        </tr>
    </table>
    <div></div>
 
    <script>
        //当开始在输入框中键入内容的时候,div模块就开始显示,里面的内容是input里面的内容,但字体变大
        var input = document.querySelector('input')
        var div = document.querySelector('div')
        input.addEventListener('keyup', function() {
            if (input.value != '') {
                div.style.display = 'block'
                div.innerHTML = input.value
            } else {
                div.style.display = 'none'
                div.innerHTML = ''
            }
        })
    </script>
</body>
 
</html>

问题:

1、上面放大框的效果怎么做,倒三角虽然可以使用border来完成,但是效果会有颜色的填充

2、当输入框输入的文字较多的时候,怎么自动的改变上面放大框的高度和宽度

        .con::before {
            content: '';
            height: 0;
            height: 0;
            position: absolute;
            top: 28px;
            left: 18px;
            border: 8px solid #000;
            border-style: solid dashed dashed;
            border-color: #fff transparent transparent
        }
<!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>Document</title>
    <style>
        .search {
            position: relative;
            width: 178px;
            margin: 100px
        }
        
        .con {
            position: absolute;
            top: -40px;
            width: 171px;
            border: 1px solid rgba(0, 0, 0, .2);
            box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
            padding: 5px 0;
            font-size: 18px;
            line-height: 20px;
            color: #333;
            display: none;
        }
        
        .con::before {
            content: '';
            height: 0;
            height: 0;
            position: absolute;
            top: 28px;
            left: 18px;
            border: 8px solid #000;
            border-style: solid dashed dashed;
            border-color: #fff transparent transparent
        }
    </style>
</head>
 
<body>
 
    <div class="search">
        <div class="con"></div>
        <input type="text" placeholder="请输入您的快递单号" class="jd">
    </div>
 
    <script>
        //当开始在输入框中键入内容的时候,div模块就开始显示,里面的内容是input里面的内容,但字体变大
        var jd = document.querySelector('.jd')
        var con = document.querySelector('.con')
        jd.addEventListener('keyup', function() { //要区分keyup、keydown、keypress之间的区别
            if (jd.value != '') {
                con.style.display = 'block'
                con.innerHTML = jd.value
            } else {
                con.style.display = 'none'
                con.innerHTML = ''
            }
        })
    </script>
</body>
 
</html>

如果换成keydown或者keypress来注册事件的话,会少一个字,这是因为文字还没有落入文本框的时候,就以及触发了事件,但此时里面的内容还是空的,因此上面的文本框是不显示的。第二次按下的时候,立刻触发事件,此时字并没有进入盒子,盒子里面留下的只有前一个字。

注意区别

keypress更加不行,因为对于功能键是没有效果的。

4、当失去焦点的时候,就隐藏con。得到焦点就显示(onfocus、onblur)

    <script>
        //当开始在输入框中键入内容的时候,div模块就开始显示,里面的内容是input里面的内容,但字体变大
        var jd = document.querySelector('.jd')
        var con = document.querySelector('.con')
        jd.addEventListener('keyup', function() { //要区分keyup、keydown、keypress之间的区别
            if (jd.value != '') {
                con.style.display = 'block'
                con.innerHTML = jd.value
            } else {
                con.style.display = 'none'
                con.innerHTML = ''
            }
        })
        jd.addEventListener('focus', function() {
            if (jd.value != '') {
                con.style.display = 'block'
            }
        })
        jd.addEventListener('blur', function() {
            con.style.display = ''
        })
    </script>

以上就是利用JavaScript模拟京东快递单号查询效果的详细内容,更多关于JavaScript快递单号查询的资料请关注编程网其它相关文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯