如何在 PHP 中添加滚动条进行分页?
我在数据库中存储了很多图像,并且想要在页面上显示这些图像,每行三个。
我想使用滚动条列出这些图像,而不是分页浏览它们。因此,我想使用滚动条来显示图像,而不是“下一个/上一个”按钮......
I have a lot of images stored in database, and want to display those images on the page, three per row.
I'd like to use a scrollbar for listing those images instead of paging through them. So instead of Next/Previous buttons, I'd like to use a scroll bar to display the images ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要为容纳所有图像的div设置div高度,然后设置overflow-y:scroll;
You need to set the div height for the div that will hold all the images, then set
overflow-y: scroll;
你需要使用 Ajax,而 jQuery 可以简化你的生活,查看这个很棒的教程,它可能会解决你的问题:
http://www.bewebdeveloper.com /tutorial-about-ajax-scroll-paging-using-jquery-php-and-mysql
You need to use Ajax, and jQuery may simplify your life, check this awesome tutorial, it may solve your problem:
http://www.bewebdeveloper.com/tutorial-about-ajax-scroll-paging-using-jquery-php-and-mysql
你的问题不清楚。
如果要显示所有图像,请从数据库中获取所有图像并打印每张图像的 HTML。如果您想进行行操作,请使用
mod
http: //php.net/manual/en/internals2.opcodes.mod.php 运算符和计数变量,用于确定您已计数的图像数量以及是否需要新行(以获取 3每行图像)Your question is unclear.
If you want to display all the images, get them all from the database and print the HTML for each one. If you want to do rows, use the
mod
http://php.net/manual/en/internals2.opcodes.mod.php operator and a count variable to determine how many images you've counted through and whether or not you need a new row (to get the 3 images per row)要查看的一个链接是 此处,但在
One link to look at is here, and here, but it'd probably be easier to do this in CSS.