jquery鼠标点击事件,改变背景色

$(function(){$(".managementPaneldiv").mouseover(function(){$(this).css("background","... $(function(){
$(".managementPanel div").mouseover(function(){
$(this).css("background","#588600");
}).mouseout(function(){
$(this).css("background","none");
}).click(function(){
var menuText = $(this).text();
$("#menuName").html(menuText);
});
})

我需要通过div1被点击后改变其css样式(与mouseover时颜色一致),点击div2后div1恢复原背景色,同时div2改变颜色。我这里鼠标点击跟鼠标经过有点冲突,点击后鼠标离开就恢复原背景色了,请问我该如何修改代码?
展开
 我来答
何宜校
推荐于2017-09-05 · TA获得超过1691个赞
知道小有建树答主
回答量:702
采纳率:0%
帮助的人:954万
展开全部

你的意思是不是:鼠标移动高亮显示div,点击div就选中当前div(单选),

完整代码如下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery鼠标点击事件,改变背景色</title>
<script src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
    $(function () {
        //初始化div,并注册事件
        var initDiv = function () {
            $(".managementPanel div").css("background", "");
            $(".managementPanel div").mouseover(function () {
                $(this).css("background", "#588600");
            })
                .mouseout(function () {
                    $(this).css("background", "");
                })
        };
        initDiv();
        $(".managementPanel div")
            .click(function () {
                initDiv();
                //当前被点击的div改变背景色
                $(this).css("background", "#588600");
                //取消当前div的mouseout和mouseover事件
                $(this).unbind("mouseout");
                $(this).unbind("mouseover");
            });
    })
</script>
</head>
<body>
<div class="managementPanel">
    <div>div1</div>
    <div>div2</div>
    <div>div3</div>
    <div>div4</div>
    <div>div5</div>
</div>
</body>
</html>

效果图:

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式