gpt4 book ai didi

html - 如何在 MVC 中将 href 合并到带有 Html.ActionLink 的部分?

转载 作者:行者123 更新时间:2023-11-28 03:13:15 27 4
gpt4 key购买 nike

我是 MVC 的新手,遇到了一个问题。我有一个 HTML 页面,当从导航栏中单击该部分的名称时,该页面会向下滚动到该部分,但现在我必须将此 HTML 代码行更改为 MVC:

<li><a class="page-scroll" href="#services">Services</a></li>

我已经尝试使用 Html.ActionLink 但还没有成功!

我目前拥有的:

@Html.ActionLink("Services", "Index", "Home", new { area = "#services" }, new { @class = "page-scroll" })

最佳答案

创建您自己的助手或使用原始 html

<li><a href="@Url.Action("Action", "Controller")#services">Link Text</a></li>

<%= Html.ActionLink("Link Text", "Action", "Controller", null, null, "services", new { parameter = "example"}, null) %>

在您的索引页面上:

<div id="services">
<p>Here is the content you want to make show when you click the link</p>
</div>

当您点击“链接文本”时,它将引导您进入索引页面的服务部分。

关于html - 如何在 MVC 中将 href 合并到带有 Html.ActionLink 的部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29560013/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com