0

我会找到我的切换幻灯片(在右侧)的状态,以便在数据库中插入或更新帖子。我需要这个用于客户会议。

我该如何解决这个问题?

这就是我现在拥有的:

jQuery('.menu_filter').find('.toggle-slide').eq(0).click(function(){
        jQuery('.dark_red_gradient').stop(true,true).toggle();
    });

这是我的测试站点:

http://devauth.labscope.de/htmlapp/report-overview_test.html

希望有人有想法。

4

1 回答 1

0

您不能在 1 和 0 之间更改“id”状态以显示切换状态。

        var X=$(this).attr('id');
        if(X==1){
            $(this).attr('id', '0'); 
        } else {
            $(this).attr('id', '1');
        }

可能是这样的?希望能帮助到你。

于 2013-10-15T11:35:57.847 回答