js中实现点击一个元素加边框,点击另一个元素去掉前一个元素边框,当前元素加边框?

js中实现点击一个元素加边框,再点击另一个元素去掉上次点击元素的边框,当前元素加边框?... js中实现点击一个元素加边框,再点击另一个元素去掉上次点击元素的边框,当前元素加边框? 展开
 我来答
知识阅历积累历程

2020-02-22 · 影视爱好者、游戏达人、IT 男
知识阅历积累历程
采纳数:10964 获赞数:6547

向TA提问 私信TA
展开全部

使用:.addClass('active').siblings().removeClass('active');即可

解释:给当前选中的增加边框.addClass('active')

给原先选中的取消边框.siblings().removeClass('active')

详细如下:

<style type="text/css">
.clr:after{clear:both;display:block;overflow:hidden;height:0;content:".";}
.clr{zoom:1;}
.price{width:100%;}
.price a{width:100px;height:40px;line-height:40px;text-align:center;background:#eee;float:left;margin:0 5px;display:block;cursor:pointer;}
.price a.active{border:1px solid red;}
</style>

<div class="price clr">
<a>5元</a>
<a>10元</a>
<a>100元</a>
<a>200元</a>
</div>

<script type="text/javascript" src="引用jquery.js或zepto.js"></script>
<script type="text/javascript">
$(function(){
$('.price a').click(function(){
$(this).addClass('active').siblings().removeClass('active');
});
});
</script>

效果如下:

请轻亲青草
2020-04-09 · TA获得超过633个赞
知道小有建树答主
回答量:1901
采纳率:85%
帮助的人:222万
展开全部
 <!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>
        body,div{
            margin:0;
            padding:0;
            box-sizing: border-box;
        }
        .price{
            background-color: #ccc;
            width:100px;
            line-height: 32px;
            text-align: center;
            display: inline-block;
        }
        .active{
            border:1px solid red;
        }
    </style>
</head>

<body>
    <div class="price">5</div>
    <div class="price">15</div>
    <div class="price">25</div>
    <div class="price">35</div>
</body>
<script>
    let num = 0;
    document.querySelectorAll(".price").forEach((item,index)=>{
        item.onclick = ()=>{
            document.querySelectorAll(".price")[num].setAttribute("class","price");
            num = index;
            document.querySelectorAll(".price")[num].setAttribute("class","price active");
        }
    })
</script>

</html>

 请采纳

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式