如何为用户的“每页项目”设置一个简单的选择表单?偏爱?
我想要一个简单的选择输入框,其中包含“每页项目”的几个选项。我想保存新设置(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的事情应该将 cookie 设置为选择框的值并刷新页面。
您可以在 http://plugins.jquery.com/project/Cookie 获取 cookie jquery 插件。
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.
在我看来,在 PHP 中处理 cookie 要容易得多,因为我发现 javascript cookie 很痛苦。这就是我要做的:
javascript:
PHP:
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:
PHP: