大家好我想将文字从隐藏信息更改为显示信息
切换我正在制作的手风琴的顶部链接。
同样在手风琴的底部,我滑动切换的元素内部有一个链接,当点击此链接时,我想仅更改顶部链接上的文本并隐藏当前正在进行的操作。< / p>
这是我的jquery
$(document).ready(function(){
//On Click
$('.collapseLink').click(function(){
$(this).parent().next(".revealBoxContents").stop(true, true).slideToggle('slow');
});
$('.collapseLink').click(function(){
$(this).parents('.revealBoxContents').stop(true, true).slideToggle('slow');
});
});
这是URL
http://satbulsara.com/NSJ-local/eqs1.htm
谢谢,
周六
答案 0 :(得分:0)
使用回调函数怎么样?使用选择器元素:可见,您可以检测幻灯片元素的当前状态,并显示相应的文本。
这样的事情:
$('.collapseLink').click(function(){
$(this).parent().next(".revealBoxContents").stop(true, true)
.slideToggle('slow', function(){
var txt = ($('#yourelement').is(':visible')) ? 'hide' : 'show';
$('#togglelink').html(txt);
})
});
...如何格式化代码?