Uncaught TypeError: jQuery(…).tablesorter is not a function

前端 未结 2 1766
盖世英雄少女心
盖世英雄少女心 2021-01-17 06:01

I have a typo3 plugin hat works fine in typo3 6.2.31 now I migrate to 7.6.23. I have several problems with jQuery libraries. I often got this error:

U

相关标签:
2条回答
  • 2021-01-17 06:16

    A working solution is:

    TYPO3.jQuery(".table.sortable").tablesorter();
    
    0 讨论(0)
  • 2021-01-17 06:29

    Check that there is a loaded tablesorter plugin first before the tyop3 plugin, sounds like ideal sort order would be:

    1. jQuery library
    2. Tablesorter plugin
    3. Typo3 plugin
    0 讨论(0)
提交回复
热议问题