带有 <p> 标记的 jQuery 分页显示单个页面中的所有页面,如果它里面有其他标记

jQuery pagination with <p> tag displays all pages in a single page if it has some other tag inside

本文关键字:其他 如果 显示 jQuery 分页 单个页 带有      更新时间:2023-09-26

我正在使用jquery分页,但如果它里面有其他标签,它就不起作用。

这是我的代码:

    <head>
    <link href="simplePagination.css" type="text/css" rel="stylesheet"/>
    <script src="jquery-1.11.1.min.js"></script>
    <script src="jquery.simplePagination.js"></script>
    <script>
    jQuery(function($) {
    var items = $(".content");
    var numItems = items.length;
    var perPage = 1;
    items.slice(perPage).hide();
    $("#pagination").pagination({
    items: numItems,
    itemsOnPage: perPage,
    cssStyle: "light-theme",
    onPageClick: function(pageNumber) {
    var showFrom = perPage * (pageNumber - 1);
    var showTo = showFrom + perPage;
    items.hide();
    items.slice(showFrom, showTo).show();
    }
    });
    });
    </script>
    </head>
    <body>
    <div id="pagination"></div>
    <p class="content">
    <table><tr>Window0</tr></table></p> //this code is working 
if it doesn't have the table and 
div tag inside, but in my original its mandatory for me to have this table tag and div tag
    <p class="content"><div>Window1</div></p>
    <p class="content">Window2</p>
    <p class="content">Window3</p>
    <p class="content">Window4</p>
    </body>

所有分页插件都可以在这里找到.https://github.com/flaviusmatis/simplePagination.js

请参阅我在代码中给出的评论行,存在问题。帮助我解决这个问题。

您需要修复标记。 p标签并不意味着像您正在做的那样包含其他块级元素,而只是包含"措辞"元素。使用div作为.content元素,然后在其中适当地嵌套,一切正常。(演示)

<div id="pagination"></div>
<div class="content"><table><tr><td>Window0</td></tr></table></div>
<div class="content"><div>Window1</div></div>
<div class="content">Window2</div>
<div class="content">Window3</div>
<div class="content">Window4</div>
此外,在未来,

指定您实际看到的行为会很有帮助,而不是"不起作用"——这无助于任何人进行故障排除。