标签:
在HTML5 API里,页面DOM里的每个节点上都有一个classList
对象,程序员可以使用里面的方法新增、删除、修改节点上的CSS类。使用classList
,程序员还可以用它来判断某个节点是否被赋予了某个CSS类。
Element.classList
这个classList
对象里有很多有用的方法:
{ length: {number}, /* # of class on this element */ add: function() { [native code] }, contains: function() { [native code] }, item: function() { [native code] }, /* by index */ remove: function() { [native code] }, toggle: function() { [native code] } }
正如你上面看到的,Element.classList
类很小,但里面的每个方法都很有用。
新增一个css类:使用add方法。
myDiv.classList.add(‘myCssClass‘);
删除一个css类:使用remove方法。
myDiv.classList.remove(‘myCssClass‘);
标签:
原文地址:http://www.cnblogs.com/yingzi1028/p/5563347.html