我是MVC 4和JQuery的新手。这是一个简单的问题,但我提供了额外的信息以防万一。我的问题是“我如何将一个简单的jquery插件合并到MVC 4框架中?”我已经完全没有将jquery插件合并到我的项目中。我已经获得了“alert”document.ready test工作,但是在将它合并到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"));
答案 0 :(得分:0)
呃,问题是我的BundleConfig.cs文件中的脚本没有正确命名。该脚本是jquery.slides.js,而不是jquery.slides.ui.js。在输入正确的脚本名称后,这一切都很完美。