JSLite - CSS 類
如有疑問歡迎到這些地方交流,歡迎加入JSLite.io組織團體共同開發!
css
取得或設定節點物件的style樣式內容。
$("#box").css("color","yellow") //⇒ self 返回Array 节点内容 $("#box").css({"color":"yellow"}) //⇒ self 返回Array 节点内容
hasClass
集合中是否有節點物件含有指定的class。
$("#box").hasClass("box2") //⇒ true
addClass
為每個符合的節點物件新增指定的class類別名稱。
$("#box").addClass("box23 go") //⇒ self 原有对象class上添加 box23和 go $("#box").addClass(function(){ return "box23 wcj" }) //⇒ self 原有对象class上添加 box23 和wcj
removeClass
清除節點物件中所有節點物件的指定class類別名,不填入清空。
$("#box").removeClass("box23") //⇒ self 删除原有对象class中box23 $("div").removeClass() //⇒ self 所有匹配的对象class属性被删除
toggleClass
在符合的節點物件集合中的每個節點物件上新增或刪除一個或多個樣式類別。
$("#box").toggleClass("box1 box2") //⇒ self 原有对象class上添加 "box1 box2"或者删除"box1 box2"