$("#frmTest :radio").attr("disabled","true");
2015-11-27
$("#frmTest :password").addClass("bg_red");
2015-11-27
$("li:last-child").css("background-color", "blue");
2015-11-27
$("li:first-child").css("background-color", "green");
2015-11-27
$("li[title!='蔬菜']").css("background-color", "green");
2015-11-27
$("li[title!='蔬菜']").css("background-color", "green");
2015-11-27
$("li[title='蔬菜']").css("background-color", "green");
2015-11-27
$("li:visible").css("background-color","blue");
2015-11-27
var $strHTML = $("input:hidden").val();
$("div").html($strHTML);
$("div").html($strHTML);
2015-11-27
$("li:has('label')").css("background-color", "blue");
2015-11-27
$("li:contains('jQuery')").css("background", "green");
2015-11-27
$("li:eq(2)").css("background-color", "#60F");
2015-11-27
$("li:last").css("background-color", "red");
2015-11-27
$("p~label").css("border", "solid 1px red");
$("p~label").html("我们都是p先生的粉丝");
$("p~label").html("我们都是p先生的粉丝");
2015-11-27