js 添加删除替换class 类


"box">
function $(id){ return document.getElementById(id); } var box = $('box'); var classVal = box.getAttribute('class'); //删除类 classVal = classVal.replace("someClassName",""); box.setAttribute("class",classVal ); //添加类 classVal = classVal.concat("someClassName"); box.setAttribute("class",classVal ); //替换类 classVal = classVal.replace("someClassName","otherClassName"); box.setAttribute("class",classVal );

你可能感兴趣的:(js添加删除替换,js代码)