jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Jquery Tablesorter,按链接url排序而不是链接内容大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我在使用第一列(第4列)中的链接的表上使用Tablesorter.问题是在FF和Chrome中,当按网址点击而不是链接内容时,它会对第一列进行排序.例如

<tr><td><a href="@R_675_10107@://abc.com">zzz</a></td><td>11</td><td>22</td><td>33</td></tr>
<tr><td><a href="@R_675_10107@://cba.com">aaa</a></td><td>11</td><td>22</td><td>33</td></tr>
<tr><td><a href="@R_675_10107@://bbb.com">ccc</a></td><td>11</td><td>22</td><td>33</td></tr>

它会订购

zzz
ccc
aaa

而不是字母.这是故意的吗?是否有任何人可以建议的解决方案?

谢谢

解决方法

我有同样的问题.在 Documentation中找到解决方案.需要为链接添加解析器,删除< a>排序时从列中文本开头的标记.

这是应该解决您的问题的代码

<script type="text/javascript">
    // add parser through the tablesorter addParser method 
    $.tablesorter.addParser({
        // set a unique id 
        id: 'links',is: function(s)
        {
            // return false so this parser is not auto detected 
            return false;
        },format: function(s)
        {
            // format your data for normalization 
            return s.replace(new RegExp(/<.*?>/),"");
        },// set type,either numeric or text
        type: 'text'
    }); 


    // Apply "links" parser to the appropriate column
    $(document).ready(function()
    {
        $("#myTable").tablesorter({
            headers: {
                0: {
                    sorter: 'links'
                }
            }
    });
</script>

大佬总结

以上是大佬教程为你收集整理的Jquery Tablesorter,按链接url排序而不是链接内容全部内容,希望文章能够帮你解决Jquery Tablesorter,按链接url排序而不是链接内容所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。