更改单击按钮的文本

时间:2013-07-13 00:55:49

标签: jquery

我需要一种方法来切换里面的文本(这个)虽然这个代码我做得不对,我不知道为什么。要切换的文本位于show class中。

  $('.show').on('click', function(e) {
e.preventDefault();
$(this).closest('.less').next('.more').toggle(function (){
        $(this).text("change text")
        .stop();
    }, function(){
        $(this).text("change text again")
        .stop();
    });

});

1 个答案:

答案 0 :(得分:0)

{@ 1}}函数已弃用并已删除:

toggle()

FIDDLE