CSS jQuery冲突

时间:2013-03-12 16:00:16

标签: jquery css pagination jquery-pagination

我有一个包含数据的表,行被分类为.paginate,这些将用jquery脚本分页。有两行代码搞乱我的CSS和所有< td>出现在表格的第一列而不是均匀分布。这是搞乱的jQuery代码。这两行都是必需的。

//hide all the elements inside content div
$('.paginate').css('display', 'none');

//and show the first n (show_per_page) elements
$('.paginate').slice(0, show_per_page).css('display', 'block');

1 个答案:

答案 0 :(得分:1)

我建议创建一个这样的类:

<强> CSS

.displayNone {
    display: none;
}

根据需要删除课程

<强> JS

$('.paginate').addClass('displayNone');

$('.paginate').slice(0, show_per_page).removeClass('displayNone');