今天给大家分享的建站知识是:用JS添加和删除class类名。
方法1.
添加:document.getElementById("id").classList.add("类名");
删除:document.getElementById("id").classList.remove("类名");
方法2
var classVal=document.getElementById("id").getAttribute("class");
添加:document.getElementById("id").setAttribute("class",classVal.concat(" 类名"));
删除:document.getElementById("id").getAttribute("class").replace("类名"," ");
方法3.
添加:document.getElementById("id").className+=" 类名";
扫描二维码手机查看该文章
文章引用:https://www.qinghuahulian.com/news/webzhishi/1369.html