本文介绍了添加和减去其他类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 函数enlargegreen(())使用java脚本添加和减去一个类im使用多个类){ document.getElementByClassName('playlist-player')。className + =enlarge; document.getElementByClassName('playlist-player')。className - =shrink; } < div class =playlist-player shrink greenonmousedown =enlargegreen()>< / div> 我试图减去缩小部分并用放大来替换它 小提琴 关于addClass() 关于removeClass() 我在我的示例中使用了addClass()和removeClass(),我做了一个快速小提琴。关于两者: removeClass():从匹配元素集合中的每个元素中移除单个类,多个类或所有类。 2)addClass():将指定的类(es)添加到匹配元素集合中的每一个元素。 im trying to add and subtract a class using java script im also using multiple classes here is my code function enlargegreen() { document.getElementByClassName('playlist-player').className += "enlarge"; document.getElementByClassName('playlist-player').className -= "shrink";}<div class="playlist-player shrink green" onmousedown="enlargegreen()" ></div>Im trying to subtract the shrink part and replace it with enlarge 解决方案 $(".playlist-player").addClass("green test2").removeClass("playlist-player");FiddleAbout addClass()About removeClass()I made a quick fiddle where i used addClass() and removeClass() in my example. A little about both :1 ) removeClass() : Remove a single class, multiple classes, or all classes from each element in the set of matched elements.2 ) addClass() : Adds the specified class(es) to each of the set of matched elements. 这篇关于添加和减去其他类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-27 16:26