问题描述
- 有关jquery收起和展开的
-
当点击回复时,展开内容并且把展开改为收起回复,当点击收起回复内容,把收起回复改为原来的回复();我写了以下代码,行不通。$(".repeat").toggle(function(){ $(this).text($txt); $(this).parent().siblings(".other-comment").hide(); },function(){ var $txt=$(this).text(); $(this).text("收起回复"); $(this).parent().siblings(".other-comment").show(); ; })
解决方案
jquery 菜单展开收起
jQuery学习笔记(3)---点击触发菜单的展开与收起
jquery 折叠&展开
解决方案二:
我的如果不要 $(this).text($txt);也是可以运行的
解决方案三:
http://blog.csdn.net/o_pikaka/article/details/7828121
时间: 2024-10-19 18:31:17