Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近我需要在 MVC4 项目的 Master layout.cshtml 页面中使用 J-Query 添加横幅/滑块,这是 razor 视图页面,任何建议都会有所帮助。
我认为你应该选择 jQuery 滑块插件(有很多,只要找到一个适合你的需要)。他们每个人都有如何设置它的说明。
至于主布局,我使用了几种方法:
@Html.Partial("_Slider")- 如果您不需要动态加载图像@Html.Action("Slider", "Home")- 您可以从数据库中获取数据并从控制器的操作中渲染部分视图
@Html.Partial("_Slider")
@Html.Action("Slider", "Home")
希望这可以帮助。