$(document).ready(function(e) {
$("li:eq(4)~li").hide();
aaa=$("a")
aaa.html("更多..");
aaa.click(
function(){
$("li:eq(4)~li").toggle();
aaa.toggleClass("active");
aaa.html("更多..");
$(".active").html("简单..")
}
);
});
$("li:eq(4)~li").hide();
aaa=$("a")
aaa.html("更多..");
aaa.click(
function(){
$("li:eq(4)~li").toggle();
aaa.toggleClass("active");
aaa.html("更多..");
$(".active").html("简单..")
}
);
});
最赞回答 / qq_冲哥_0
你是混淆了DOM对象和jQuery 对象,对象不同,方法不同。.onclick=function()是DOM 对象用的,就是JS 中用的。$("#btn")[0],就是你无意中把jQuery 对象转换成了DOM对象,所以你的程序能运行.$("#btn")是jQuery 对象,用jQuery 方法: $("#btn").click(function(){alert(111);});应该没有问题
2016-03-09
$('li:last-child').css('background-color','yellow');
2016-03-09
$('li:first-child').css('background-color','blue');
2016-03-09
$(function(){
$("li[title*='果']").css('background-color','red');
});
$("li[title*='果']").css('background-color','red');
});
2016-03-09
$(function(){
$('li[title!=水果]').css('background-color','blue');
});
$('li[title!=水果]').css('background-color','blue');
});
2016-03-09
$(function(){
$("li[title='蔬菜']").css('background-color','yellow');
$("li[title='水果']").css('background-color','green');
});
$("li[title='蔬菜']").css('background-color','yellow');
$("li[title='水果']").css('background-color','green');
});
2016-03-09