css background-position结合disaply:inline-block使用

  $(".icon-a").on('click', function (e) {
        if ($(this).next().css('display') == "none") {
            $(this).children().removeClass('datagrid-row-collapse').addClass('datagrid-row-expand');
        } else {
            $(this).children().removeClass('datagrid-row-expand').addClass('datagrid-row-collapse');
        }
    });

 

posted @ 2015-06-29 16:30  Seaurl  阅读(404)  评论(0编辑  收藏  举报