我想把被点击的 div 带到前面,怎么做?
在这里,我在 HTML 中添加了一些 div:
<div class="div1">A</div>
<div class="div2">B</div>
<div class="div3">C</div>
我在这里用 CSS 代码设置了 div 的大小:
div {
width: 100px;
height: 100px;
background-color: #666;
border-color: #333;
border-style: solid;
position: absolute;
line-height: 100px;
text-align:center;
font-size:50px;
}
.div1 {
left: 91px;
top: 66px;
}
.div2 {
left: 132px;
top: 152px;
}
.div3 {
left: 171px;
top: 90px;
}
同样在这里,我想在单击 div 时更改活动 div,单击时它应该放在前面,如何使用 Jquery 做到这一点:
$(".div1").click(function() {
// make div 1 front of the screen
})
$(".div2").click(function() {
// make div 2 front of the screen
})
$(".div3").click(function() {
// make div 3 front of the screen
})