背面显示搜索结果页面

发布于 2024-11-07 04:27:44 字数 152 浏览 0 评论 0原文

我正在用 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 技术交流群。

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

发布评论

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

评论(2

美羊羊 2024-11-14 04:27:44

事实上,这听起来像是我们的好朋友 Javascript 的工作。但没那么多——我认为简单的历史技巧就足够了。资源:

http://www.javascriptkit.com/jsref/history.shtml

示例:

<a href="javascript:history.go(-3)">Go back 3 pages</a>

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:

<a href="javascript:history.go(-3)">Go back 3 pages</a>
眼泪都笑了 2024-11-14 04:27:44

这听起来像是我们的好朋友 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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文