使用:.addClass('active').siblings().removeClass('active');即可
解释:给当前选中的增加边框.addClass('active')
给原先选中的取消边框.siblings().removeClass('active')
详细如下:
<style type="text/css">
.clr:after{clear:bothdisplay:blockoverflow:hiddenheight:0content:"."}
.clr{zoom:1}
.price{width:100%}
.price a{width:100pxheight:40pxline-height:40pxtext-align:centerbackground:#eeefloat:leftmargin:0 5pxdisplay:blockcursor: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>
效果如下:
Javascript自带的警告框是没办法做出这样的效果的,只能用HTML来模拟。首先,HTML里在BODY下加一个DIV,样式{position: absoluteleft:0top:0display:none}
然后把警告框的效果做成HTML放在这个DIV里,要弹出这个警告框的时候,把DIV的width跟height设置成document.clientWidth跟clientHeight,就是把DIV最大化,盖住其他元素来阻止对其他元素的操作(如点击),再设置style.display="block"来显示这个DIV,关闭的时候就只需将style.display="none"就OK了~~~
思路就是这样,实在不懂,写不来就再追问吧