我正在开发一个简单的应用程序,它会在单击对象时更改对象的边框。
$('.tab').click(function(event) {
$('tab-active:first').css('border-right', '1px solid black');
$(event.target).addClass('tab-active');
});
html
head
title=title
link(rel="stylesheet" type="text/css" href="../style.css")
//- link(rel="stylesheet" type="text/css" href="../bootstrap.min.css")
//- link(rel="stylesheet" type="text/css" href="../bootstrap-theme.css")
script(src="../jquery-2.1.3.min.js")
script(src="../underscore-min.js")
script(src="../backbone-min.js")
script(src="../application.js")
body
.main
div(class="tab tab-active top")
div(class="tab")
div(class="tab")
div(class="tab")
.main {
width: 80vw;
height: 80vh;
background-color: #DDDDDD;
margin-right: 10vw;
margin-left: 10vw;
margin-top: 10vh;
margin-bottom: 10vh;
float: left;
border: 1.5px solid black;
}
.tab {
color: #DDDDDD;
border: 1px solid black;
border-left: none;
display: block;
height: 25%;
width: 13%;
}
.tab-active {
border-right: none;
}
.tab:hover {
background-color: #CCCCCC;
border: .5px solid black;
}
.top {
border-top: none;
}
单击选项卡时,它会删除clciked对象上的右边框,但不会使用tab-active
将其返回到上一个选项卡。我做错了什么?
答案 0 :(得分:4)
你的选择器错了。要选择课程,您需要使用.
。
$('.tab-active:first').css('border-right', '1px solid black');