たとえば、jquery を使用して以前に削除されたいくつかの css クラス。
html
<div class="one someclass"></div>
<div class="two otherclass"></div>
<div class="one otherclass"></div>
<div class="two someclass"></div>
jquery
$('div').removeClass();
これにより、すべてのクラスが削除されます。
ここで、特定のクラスに対して以前に適用されたクラスをキャッチしたいと思います。
$('div').addClass('someclass')
/* to which previously it was applied someclass in the above html
that is add someclass to first class - one and last class -two*/
$('div').addClass('otherclass')
/* to which previously it was applied otherclass in the above html
that is add otherclass to first class - two and last class -one*/
編集
こうなってもどうしよう
<div class="one someclass"></div>
<div class="otherclass two"></div>
<div class="one otherclass"></div>
<div class="someclass one"></div>