$ table.floatThead()未被识别为函数

时间:2016-03-14 20:15:29

标签: jquery

当我使用jquery thead函数滚动表格时,我正试图冻结屏幕顶部的floatThead()表格。 我正在将jquery引用到页面但是当我按下f12键时它没有工作有一个X说“floatThead不是一个函数”。 这是jquery代码:

$(function () {
    var $table = $('table.tableTop');
    $table.floatThead();
});

这是html:

<table class="tableTop">
<thead>
    <tr>
        <th>.....

这是错误: enter image description here

有人可以帮助我吗?

2 个答案:

答案 0 :(得分:0)

你需要包含插件jquery.floatThead.js 在这里你可以看到细节: http://mkoryak.github.io/floatThead/

答案 1 :(得分:0)

floatThead()不是内置jQuery插件的一部分。当您在项目中包含jquery.floatThead表头插件时,会出现这种情况。请检查here是否已包含该内容。