Home  >  Article  >  Web Front-end  >  js implements the function code of addClass, removeClass, hasClass_javascript skills

js implements the function code of addClass, removeClass, hasClass_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:04:321289browse
复制代码 代码如下:

function hasClass(ele,cls) {
return ele.className.match(new RegExp('(\s|^)' cls '(\s|$)'));
}

function addClass(ele,cls) {
if (!this.hasClass(ele,cls)) ele.className = " " cls;
}

function removeClass(ele,cls) {
if (hasClass(ele,cls)) {
var reg = new RegExp('(\s|^)' cls '(\s|$)');
ele.className=ele.className.replace(reg,' ');
}
}

//call the functions
addClass(document.getElementById("test"), "test");
removeClass(document.getElementById("test"), "test")
if(hasClass(document.getElementById("test"), "test")){//do something};
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn