//---------------html部分
<head>
//自定义样式
<style>
.bgColor{
background-color: #9be7ff;
}
</style>
</head>
<body>
<div class="d">
<div class="rows">div1</div>
<div class="rows">div2</div>
<div class="rows">div3</div>
</div>
<body>
//---------------js部分
//DIV点击单选效果
$(".rows").click(function() {
clear();
$(this).addClass("bgColor");
});
//div单选样式
function clear() {
$(".rows").each(function() {
if ($(this).hasClass("bgColor")) {
$(this).removeClass("bgColor");
}
});
}