td colspan does not work while using jquery show/hide()

后端 未结 9 618
走了就别回头了
走了就别回头了 2021-01-13 16:14

I have a table of content

First Name Last Name Des
9条回答
  •  感动是毒
    2021-01-13 16:38

    Try this in your code:

    $('a.personal-checking-more-link').click(function() {
        var descriptionTR = $(this).parent().parent().next();
        $(descriptionTR).toggle('slow').colSpan = 3;
    });
    

    http://www.nabble.com/IE7:-Setting-ColSpan-as-Attribute-td21252688s27240.html

提交回复
热议问题