如何为用户的“每页项目”设置一个简单的选择表单?偏爱?

发布于 2024-12-03 14:43:06 字数 481 浏览 0 评论 0原文

我想要一个简单的选择输入框,其中包含“每页项目”的几个选项。我想保存新设置(cookie,首选)并在更改时刷新页面。我不需要在不重新加载页面的情况下重置页面上的项目,因此我可以使用 PHP 获取 cookie 并进行相应的限制。

<label>Items per page</label>
<select name="itemsPerPage">
  <option value="10">10</option>
  <option value="25">25</option>
  <option value="50">50</option>
  <option value="100">100</option>
</select>

你能指出我正确的方向吗?我在服务器上运行 PHP,并在 javascript 上运行 jQuery。

I'd like to have a simple select input box with a couple options for "items per page". I'd like to save the new setting (cookie, preferred) and refresh the page on change. I don't need the items on the page to reset without reloading the page, so I can pick up the cookie with PHP and limit accordingly.

<label>Items per page</label>
<select name="itemsPerPage">
  <option value="10">10</option>
  <option value="25">25</option>
  <option value="50">50</option>
  <option value="100">100</option>
</select>

Can you point me in the right direction? I'm running PHP on the server and jQuery for javascript.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

窗影残 2024-12-10 14:43:06

像这样的事情应该将 cookie 设置为选择框的值并刷新页面。

您可以在 http://plugins.jquery.com/project/Cookie 获取 cookie jquery 插件。

$("select[name=itemsPerPage]").change(function(e) {

    $.cookie("itemsPerPage", $(e.target).val());

    window.location.reload();   

});

Something like this should set the cookie to the value of the select box and refresh the page.

You can get the cookie jquery plugin at http://plugins.jquery.com/project/Cookie.

$("select[name=itemsPerPage]").change(function(e) {

    $.cookie("itemsPerPage", $(e.target).val());

    window.location.reload();   

});
怪我入戏太深 2024-12-10 14:43:06

在我看来,在 PHP 中处理 cookie 要容易得多,因为我发现 javascript cookie 很痛苦。这就是我要做的:

javascript:

$('select [name="itemsPerPage"]').change(function() {
    window.location="/myPage.php?items=" + $(this).val();
}

PHP:

if(!empty($_GET['items'])) {
    setcookie("itemsPerPage", $_GET['items']);
}

$itemsPerPage = (!empty($_COOKIE['items']) ? $_COOKIE['items'] : 10);

In my opinion, it's much easier to handle cookies in PHP, since I find javascript cookies to be a pain. This is how I would do it:

javascript:

$('select [name="itemsPerPage"]').change(function() {
    window.location="/myPage.php?items=" + $(this).val();
}

PHP:

if(!empty($_GET['items'])) {
    setcookie("itemsPerPage", $_GET['items']);
}

$itemsPerPage = (!empty($_COOKIE['items']) ? $_COOKIE['items'] : 10);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文