0
可能重複:
Why don't jQuery works in Microsoft Visual Studio 2010?如何在Visual Studio 2010 MVC 2 Web項目中添加jQuery?
我們已經創建了一個網站的Visual Studio 2010 MVC 2的Web項目,現在要添加樣式菜單和圖像幻燈片使用jQuery。但是,當我們添加jQuery腳本文件時,Visual Studio會返回一些錯誤。我們已經正確給出了鏈接jQuery文件的先決條件。但錯誤依然還是..
// code that we have used in jQuery //
function slideSwitch() {
var $active = $('#Left_Image DIV.active');
if ($active.length == 0) $active = $('#Left_Image DIV:last');
// use this to pull the divs in the order they appear in the markup
var $next = $active.next().length ? $active.next()
: $('#Left_Image DIV:first');
// uncomment below to pull the divs randomly
// var $sibs = $active.siblings();
// var rndNum = Math.floor(Math.random() * $sibs.length);
// var $next = $($sibs[ rndNum ]);
$active.addClass('last-active');
$next.css({ opacity: 0.0 })
.addClass('active')
.animate({ opacity: 1.0 }, 1000, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval("slideSwitch()", 5000);
});
// code in view master page //
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
<link href="../../Content/NIPL.css" rel="Stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="<%= Url.Content("~/Scripts/jquery-1.5.1.min.js") %>" type="text/javascript"></script>
<script src="../../Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
<script src="<%= Url.Content("~/Scripts/SlideShow.js") %>" type="text/javascript"></script>
它會拋出構建錯誤嗎?它究竟說什麼?或者在瀏覽器控制檯中顯示哪些錯誤? – 2012-01-09 07:39:07
請只更新您的原始問題,而不是要求一個新的問題。您可以點擊標籤下的「編輯」鏈接來執行此操作。 – 2012-01-09 09:16:53