我是 MVC 4 和 JQuery 的新手。这是一个简单的问题,但我会提供额外的信息以防万一。我的问题是“如何将一个简单的 jquery 插件合并到 MVC 4 框架中?” 我完全没有成功地将 jquery 插件合并到我的项目中。我已经让“alert” document.ready 测试开始工作,但是在将它合并到 MVC 框架中时我还没有让任何插件工作。我已经到处搜索了关于此的可靠教程,但找不到任何东西。
我希望能回答上面的一般问题,或者回答我在以下实现中做错了什么。我正在尝试将图片轮播添加到新的 MVC Web 应用程序项目的布局中。我必须有一些不合适的地方,因为幻灯片 jquery 插件与 MVC 4 完全不同(请参阅底部的 html),但在将所有内容添加到新的 MVC 4 项目后,图像只会在页面上彼此相邻显示。在放入我的 MVC 项目之前,我将幻灯片配对,以便不需要 css,并验证它在 MVC 4 之外工作。请帮助! - 被困了很长时间。这是我的代码:
_Layout.cshtml
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title - My ASP.NET MVC Application</title>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width" />
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryui")
</head>
<body>
<header>
<div class="content-wrapper">
<div class="float-left">
<p class="site-title">@Html.ActionLink("your logo here", "Index", "Home")</p>
</div>
<div class="float-right">
<section id="login">
@Html.Partial("_LoginPartial")
</section>
<nav>
<ul id="menu">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
</nav>
</div>
</div>
</header>
<div id="body">
@RenderSection("featured", required: false)
<section class="content-wrapper main-content clear-fix">
@RenderBody()
</section>
</div>
<footer>
<div class="content-wrapper">
<div class="float-left">
<p>© @DateTime.Now.Year - My ASP.NET MVC Application</p>
</div>
</div>
</footer>
<div id="slides">
<img src="~/Images/Home_AEB3075%20(1).jpg" width="464" height="309" />
<img src="~/Images/Home_AEB3075%20(2).jpg" width="464" height="309" />
<img src="~/Images/Home_AEB3075%20(3).jpg" width="464" height="309" />
</div>
<script>
$(function () {
$('#slides').slidesjs({
width: 464,
height: 309,
play: {
active: true,
auto: true,
interval: 4000,
swap: true
}
});
});
</script>
@RenderSection("scripts", required: false)
</body>
</html>
BundleConfig.cs
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
"~/Scripts/jquery-ui-{version}.js",
"~/Scripts/jquery.ui.slides.js"));