JavaScript下拉列表

<!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>
        * {
            text-decoration: none;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        div {
            width: 600px;
            margin: auto;
            text-align: center;
        }

        button {
            width: 100px;
            height: 45px;
            border: none;
            background-color: pink;
        }

        ul {
            margin: auto;
            width: 100px;
            border: paleturquoise 1px solid;
            display: none;
        }

        ul li {
            margin: 5px 0;

        }

        ul li:nth-child(3) {
            border-top: solid 1px paleturquoise;
        }
    </style>
</head>

<body>
    <div>
        <button>打开输入法</button>
        <ul>
            <li><a href="JavaScript:;">拼音</a></li>
            <li><a href="JavaScript:;">手写</a></li>
            <li><a href="JavaScript:;">关闭</a></li>
        </ul>
    </div>
</body>
<script>
  // 获取元素
    var btn = document.querySelector('button');
    var ul = document.querySelector('ul');
    var oA = document.querySelectorAll('a');
    btn.onclick = function () {
    //利用三元表达式进行判断
        ul.style.display = ul.style.display == "block" ? "none" : "block";
    }
    for (var i = 0; i < oA.length; i++) {
        oA[i].n = i;
        //获取元素长度
        console.log(oA[i].n);
        
        if (oA[i].n == 2) {
            oA[i].onclick = function () {
                btn.innerHTML = '打开输入法';
                ul.style.display = 'none';
            }
        }
        else {
            oA[i].onclick = function () {
            //将当前选中的元素的值赋给btn按钮
                btn.innerHTML = this.innerHTML;
            //复制完毕隐藏ul标签
                ul.style.display = 'none';
            }
        }

    }

</script>

</html>

效果图
在这里插入图片描述在这里插入图片描述在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值