求大神帮忙,想用jQuery+js写要给点击事件,判断背景是否要变色 20

window.onload=functionmake_it(){$("#div_title").find("li").bind("click",function(){va... window.onload = function make_it()
{

$("#div_title").find("li").bind("click",function(){

var oDiv = document.getElementById("div_title");
var oUl = oDiv.getElementsByTagName("ul");
var oLi = oUl.getElementsByTagName("li");

if(oLi.style.background="")
{
$(this).css("background","red")

}
else
{
$(this).css("background","")

}

})
}

}

代码一直报oUl不是一个有效的函数,不知道要怎么改...
展开
 我来答
luoluoyide
2015-12-14 · TA获得超过397个赞
知道小有建树答主
回答量:529
采纳率:0%
帮助的人:284万
展开全部
$(function(){
    $('#div_title li').on('click',function(){
        if($(this).css('backgroundColor')=='red'){
             $(this).css("backgroundColor","");
        }else{
            $(this).css("backgroundColor","red");
        }
    });
});

试一试这样有没有问题

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

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式