How to Use slideDown (or show) function on a table row?

后端 未结 21 2556
清歌不尽
清歌不尽 2020-11-22 09:03

I\'m trying to add a row to a table and have that row slide into view, however the slidedown function seems to be adding a display:block style to the table row which messes

21条回答
  •  迷失自我
    2020-11-22 09:51

    Select the contents of the row like this:

    $(row).contents().slideDown();
    

    .contents() - Get the children of each element in the set of matched elements, including text and comment nodes.

提交回复
热议问题