例子:
$('li').not(':even').css('background-color', 'red');
$('li').not(document.getElementById('notli'))
.css('background-color', 'red');
$("div").not(".green, #blueone")
.css("border-color", "red");
例子,
例子,
例子,Removes all elements that match "div p.selected" from the total set of all paragraphs.
$("p").not($("div p.selected"))
$("#reset").click(function() {
$(':input','#fundingpossibility')
.not(':button, :submit, :reset, :hidden, #test')
.val('');
});