如何查找和删除多个特定元素类

如何查找和删除多个特定元素类

本文介绍了如何查找和删除多个特定元素类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何选择具有多个类的元素?

$('#nav')。find('。open')。removeClass('open'); $('#nav')。find('。current')。removeClass('current');



这样做的更好方法???



我尝试过:



$('#nav')。find ( '开 ')removeClass(' 开放')。 $('#nav')。find('。current')。removeClass('current');

How can I select an element with multiple classes?
$('#nav').find('.open').removeClass('open'); $('#nav').find('.current').removeClass('current');

better way for doing this???

What I have tried:

$('#nav').find('.open').removeClass('open'); $('#nav').find('.current').removeClass('current');

推荐答案




这篇关于如何查找和删除多个特定元素类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 14:06