私はjqueryスクリプトに次のものを持っています:
if ( path[1] ) {
$('.content_nav a[class$="' + pos1_path + '"]').toggleClass('current');
}
次のような適切な要素を選択します。
<a class='pos1_path' href="#">link</a>
それは機能しますが、次のように複数のクラスが使用されている場合に同じことが機能する必要があります。
<a class='pos1_path pos2path' href="#">link</a>
どうすればこれを達成できますか?
解決済み:
$('.content_nav a[class$="' + pos1_path + ' ' + pos2_path + '"]').toggleClass('current');