こんにちは、jquery トグル スクリプトに問題があります。
<a class="clickMe">Text 1</a>
</br>
<div class="sri"> - This text will be toggled</div>
<a class="clickMe">Text 2</a>
</br>
<div class="sri"> - This text will be toggled 2</div>
$('a.clickMe').click(function () {
// find first of following DIV siblings
// with class "textBox" and toggle it
$(this).nextAll('div.sri:first').show();
$('div.sri:visible').not($(this).nextAll('div.sri:first')).toggle();
});
上記のスクリプトは正常に動作しています。デモを確認してください
<div id
しかし、スクリプトの機能を変更せずに代わりに使用する必要があるもの<div class
...多くの方法を試しましたが、まだいくつかの問題があります...使用する必要がないかもしれませ<a class="clickMe">
んこれを修正する方法はありますか?