jquery datatable plugin doesn't seem to sort columns with links properly

后端 未结 4 987
借酒劲吻你
借酒劲吻你 2021-01-16 08:37

I have a column that was pure text and the sorting worked fine but when I change the column data to HTML regular links, the sorting seems quite random and broken. I couldn\

4条回答
  •  广开言路
    2021-01-16 09:23

    I would check the source of the plugin, and see if it's sorting on something like this

    var sortText = $(this).html();
    

    and change the html() method to text(). This will strip out all tags and sort it on the text node only.

提交回复
热议问题