jQuery选择不包含某个ID数据的方法
本文导语: 使用jquery脚本选择不包含某id的其它数据。 例子: 代码示例: $('li').not(':even').css('background-color', 'red'); $('li').not(document.getElementById('notli')) .css('background-color', 'red'); $("div").not(".green, #blueone") .css("border-color", "red"); ...
使用jquery脚本选择不包含某id的其它数据。
例子:
$('li').not(':even').css('background-color', 'red');
$('li').not(document.getElementById('notli'))
.css('background-color', 'red');
$("div").not(".green, #blueone")
.css("border-color", "red");
例子,
$("p").not( $("#selected")[0] )
例子,
$("p").not("#selected")
例子,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('');
});
- Jquery选择器学习总结
- jquery属性选择器用法
- Jquery 基本选择器
- JQuery 层次选择器的例子
- JQuery 表单选择器的例子
- jquery选择器用法详解
- jquery选择器大全详解
- Jquery 选择器的用法介绍
- 学习JQuery选择器
- jquery实例-jQuery选择器的使用