大家好,我对 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">
有没有办法解决这个问题?