模拟简单的下拉框

html分为两部分,一部分是单纯的input,另一部分就是下拉菜单的内容

<div id="select_auto">
            <input id="input1" type="text" onclick="show()" style="width: 100px;">
            <div id="selectList">
                <ul>
                    <li class="li_cs" onclick="setValue(1)">选项1</li>
                    <li class="li_cs" onclick="setValue(2)">选项2</li>
                </ul>
            </div>
        </div>
document.getElementById("selectList").style.display = 'none';
    // 设置鼠标离开后会让下拉框隐藏
    document.getElementById('select_auto').onmouseleave = function (ev) {
        document.getElementById("selectList").style.display = 'none';
    }
    // 点击input让下拉框出现
    function show() {
        document.getElementById("selectList").style.display = '';
    }
    function hide() {
        console.log(123);
        document.getElementById("selectList").style.display = 'none';
    }
    // 选择下拉框的时候设置值并且隐藏
    function setValue(value) {
        document.getElementById("input1").value = value;
        document.getElementById("selectList").style.display = 'none';
    }
.li_cs:hover {
        background: #959FA9;
    }

    #selectList {
        z-index: 99;
        // 让下拉框跟随父元素,这样会排列到input框下面
        position: absolute;
        width: 99px;
        background: #ffffff;
        border: 1px solid #959FA9;
        border-radius: 2px;
        box-shadow: 0px 0px 3px #333333;
    }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值