码迷,mamicode.com
首页 > 其他好文 > 详细

解决classList兼容性替代方案

时间:2017-09-11 19:34:55      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:nbsp   type   fun   str   prot   rem   font   func   lis   

//添加class
DOMTokenList.prototype.adds = function(tokens) {
tokens.split(" ").forEach(function(token) { this.add(token); }.bind(this)); return this; }; var clList = document.body.classList; clList.adds("child1 child2 child3").toString(); // "a b c child1 child2 child3"

//移除class
DOMTokenList.prototype.removes = function(tokens) {
tokens.split(" ").forEach(function(token) {
this.remove(token);
}.bind(this));
return this;
};
var clList = document.body.classList;
clList.removes("child1 child2 child3").toString(); // "a b c child1 child2 child3"
 
 

解决classList兼容性替代方案

标签:nbsp   type   fun   str   prot   rem   font   func   lis   

原文地址:http://www.cnblogs.com/yanxiaoluo/p/7506274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!