用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+=" 类名";

posted @ 2018-03-15 16:42  Mary哎呀小龙  阅读(18137)  评论(0编辑  收藏  举报