$(".red,.green").html("hi,我们的样子很美哦!");
2014-11-28
$("form *").attr("disabled", "true");
2014-11-28
$("li:last-child").css("background-color", "blue");
2014-11-28
$("li:first-child").css("background-color", "green");
2014-11-28
$("li[title*='果']").css("background-color", "green");
2014-11-28
$("li[title!='蔬菜']").css("background-color", "green");
2014-11-28
$("li[title='蔬菜']").css("background-color", "green");
2014-11-28