作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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/
我是一名优秀的程序员,十分优秀!