背面显示搜索结果页面
我正在用 php 开发一个网站(我使用的是 codeigniter)。在用户搜索时,我需要显示产品列表。搜索结果应给出有关每个产品的简短描述。一旦用户点击更多锚点,我需要提供有关产品的完整描述。一旦用户点击返回,我需要返回到搜索结果页面。我用过分页。关于如何执行此任务的任何建议。提前致谢。
I am developing a website in php (I am using codeigniter). On search by user I need to display list of products. Search result should give small description about the each product. Once the user clicks on more anchor I need to give full description about the product. Once user clicks back I need to be back to the search result page. I have used pagination. Any suggestion on how to carry out this task. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实上,这听起来像是我们的好朋友 Javascript 的工作。但没那么多——我认为简单的历史技巧就足够了。资源:
http://www.javascriptkit.com/jsref/history.shtml
示例:
Indeed, this sounds like a job for our good friend Javascript. But not that much - simple history trick would be sufficient in my opinion. Resource:
http://www.javascriptkit.com/jsref/history.shtml
Example:
这听起来像是我们的好朋友 Javascript 的工作。您可以使用模态窗口来执行此操作,该窗口检索页面(例如 /product/id/full_description)并显示完整说明。
有许多模式窗口脚本可以做到这一点。我正在使用 jQuery 和一种名为 SimpleModal (http://www.ericmmartin.com/projects/simplemodal/) 的方法,它运行良好。我正在使用它,因为我已经在使用 jQuery 来做很多其他事情了。
以下是其他一些示例:
This sounds like a job for our good friend Javascript. You could do this with a modal window that retrieves a page (such as /product/id/full_description) and displays the full description.
There are many modal window scripts out there that can do this. I am using jQuery and one called SimpleModal (http://www.ericmmartin.com/projects/simplemodal/) and it works well. I am using this since I am already using jQuery for many other things.
Here are some other examples: