MS Visual Studio 2010でASP.NET MVC 2 Webアプリケーションを作成しました.JQueryを使用してスタイルを追加する必要があります。div内にイメージスライドショーを作成するには、JQueryファイルを作成して私のView Master Pageとリンクしてください。しかし、私がプロジェクトを実行しようとすると、Visual Studioは「Microsoft JScript実行時エラー: 'jQuery'は定義されていません」と伝えます。この問題に関してお手伝いできますか? ...ありがとう:)jQueryがMicrosoft Visual Studio 2010で動作しないのはなぜですか?
here's the code I have given within my jQuery
/*Coding : Nidhin & Eldhose*/
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);
});
このページにjQueryライブラリが含まれているかどうかを確認してください。 – Rhapsody
Google Chromeの開発ツールを使用します。すばらしい。 F12をGoogle Chromeの中に置き、コンソールタブに移動します。あなたが何かを取得している場合は、スクリプトのエラーが表示されます。彼らはあなたを案内します。 – tugberk