我有一個js行動的負擔大的問題,我有以下兩行:jQuery的運行腳本
$(".sorter td:first-child").css("width", "13px");
$(".sorter td:last-child").css("text-align", "center").css("padding", "0").css("line-height", "0").css("width", "65px");
該工作奧凱...但是當我去的tablesorter尋呼機的第二頁插件然後它不會再次加載。
截圖: a busy cat http://www.dreamwire.nl/Cleanished/error.jpg
能somewone幫助我?這是所有的JS我有什麼:
var $sorterTable = $(".sorter");
var tablesorterConfig = { widgets: ['zebra'], headers:{ 0:{sorter:false} } };
tablesorterConfig.headers[$sorterTable.find("thead th").length - 1] = { sorter:false };
$sorterTable
.tablesorter(tablesorterConfig)
.tablesorterPager({container: $("#pager"), positionFixed: false, size : 5 });
$(".sorter td:first-child").css("width", "13px");
$(".sorter td:last-child").css("text-align", "center").css("padding", "0").css("line-height", "0").css("width", "65px");
'$( 「分揀機TD:最後的孩子 」)。CSS(「 文本對齊」, 「中心」),CSS( 「填充」, 「0」),CSS(「行高(「」,「0」)。css(「width」,「65px」);'可以縮短爲:'$(「。sorter td:last-child」)。css({「text-align」 「中心」,「填充」:「0」,「線高度」:「0」,「寬度」:「65px」});' –