CakePHP 链接在同一页面中

发布于 2024-10-18 11:27:58 字数 139 浏览 1 评论 0原文

我正在尝试构建一个常见问题解答页面,顶部是目录,下面是答案。我想单击目录中的问题并在同一页面上链接到相应的答案。如何在 CakePHP 中使用 $this->Html->link() 方法执行此操作?

谢谢你!

I am trying to build a FAQ page, with table of contents on top and answers below it. I would like to click on a question from the table of contents and link on the same page to the corresponding answer. How can I do this in CakePHP, by using $this->Html->link() method?

Thank you!

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

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

发布评论

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

评论(1

迷路的信 2024-10-25 11:27:58

在链接中使用类似这样的内容:

$this->Html->link($question_title, $this->here . '#question-' . $question_id);

然后在页面下方将答案放在类似的内容中

<div id="question-<?php echo $question_id; ?>"><?php echo $answer_text; ?></div>

,显然变量将类似于蛋糕中的 $question['Question']['title'] 和Html->link url 可以使用数组来完成,

$this->Html->link($question_title, array('action' => 'faq', '#' => 'question-' . $question_id));

只要 # 之前的 url 部分与当前 url 完全匹配即可。

use something like this for the link:

$this->Html->link($question_title, $this->here . '#question-' . $question_id);

and then for later down the page put the answers in something like

<div id="question-<?php echo $question_id; ?>"><?php echo $answer_text; ?></div>

obviously the vars will be something like $question['Question']['title'] in cake and the Html->link url could be done with an array like

$this->Html->link($question_title, array('action' => 'faq', '#' => 'question-' . $question_id));

just as long as the url part before the # exactly matches the current url.

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