2 回答

TA貢獻1876條經驗 獲得超5個贊
1 、$('li').not(':even').css('background-color', 'red');
1、 $('li').not(document.getElementById('notli'))
2 、 .css('background-color', 'red');
1、 $("div").not(".green, #blueone")
2 、 .css("border-color", "red");
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")) 。
1、 $("#reset").click(function() { 。
2 、 $(':input','#fundingpossibility') 。
- 2 回答
- 0 關注
- 334 瀏覽
添加回答
舉報