使用两个单独的HTML文件分页

时间:2019-01-19 04:34:35

标签: javascript jquery html redirect pagination

我们可以用两个单独的html文件创建分页吗,例如我有两个文件index.html和page2.html ..我们可以在两个页面中添加相同的分页,以便当我们单击时index.html链接到page2.html吗? '2'会将我们重定向到page2.html。

1 个答案:

答案 0 :(得分:0)

为此使用引导程序。将页面链接放入锚标记。

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
    <div class="container">
      <h2>Pagination</h2>
      <p>The .pagination class provides pagination links:</p>                  
      <ul class="pagination">
        <li><a href="index.html.html">1</a></li>
        <li><a href="page2.html">2</a></li>
        <li><a href="page3.html">3</a></li>
        <li><a href="page4.html">4</a></li>
        <li><a href="page5.html">5</a></li>
      </ul>
    </div>
</body>
</html>