Jquery Custom Parser不工作

时间:2015-09-20 14:37:27

标签: javascript jquery tablesorter

我的表格在第2列(input)中有1st if started with index 0字段。它工作正常,并排序除了具有文本框的列以外的所有常规列。这是我的,

Javascript代码

<script src="jQuery-2.1.4.min.js"></script>
<script type="text/javascript" src="jquery.tablesorter.min.js"></script>
<script>
$('#ordertbldata').tablesorter({ 
    headers: { 
        1: {
            sorter: 'textbox_text'
        }
    } 
});

$.tablesorter.addParser({
   id: 'textbox_text',
   is: function(s) {
       console.log('function is called');
       return false;
   },
   format: function(s) {
       console.log('function format called');
       return $($.trim(s)).val();
   },
   type: "text"
});
</script>

我已添加log函数进行调试,但未调用该函数。我在这里做错了什么?

更新Fiddle here

0 个答案:

没有答案