首页 > Web开发 > 详细

jquery不包含某个类?

时间:2021-09-02 21:28:14      阅读:26      评论:0      收藏:0      [点我收藏+]
1 、$(li).not(:even).css(background-color, red);  


Js代码  

1、 $(li).not(document.getElementById(notli))  

2  、 .css(background-color, red);  


Js代码  

1、 $("div").not(".green, #blueone")  

2 、          .css("border-color", "red");  


Js代码  

1 、Example: Removes the element with the ID "selected" from the set of all paragraphs.  

2、 $("p").not( $("#selected")[0] )  。

3 、Example: Removes the element with the ID "selected" from the set of all paragraphs.  

4 、$("p").not("#selected")  。

5 、Example: Removes all elements that match "div p.selected" from the total set of all paragraphs.  

6 、$("p").not($("div p.selected"))  。


Js代码  

1、 $("#reset").click(function() {  。

2 、  $(:input,#fundingpossibility)  。

 

jquery不包含某个类?

原文:https://www.cnblogs.com/BluceLee/p/15220141.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!