原生js添加 删除指定类名

indexnavigation.classList.remove("indexnavigationaClass");
					indexnavigation.setAttribute("class", "slashStyle");

indexnavigation是定义的一个节点
setAttribute:跟指定的节点添加类名
节点.classList.add:跟指定节点添加类名
节点.classList.remove:删除指定节点的类名

你可能感兴趣的:(javascript)