我是新來的使用jQuery,我想得到一點幫助。ReferenceError:jQuery沒有定義(Metis主題模板)
我想測試一個主題模板和下面的jQuery代碼是麻煩我(這個代碼是默認):
<!--jQuery -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript">
(function($) {
$(document).ready(function() {
$('.list-inline li > a').click(function() {
var activeForm = $(this).attr('href') + ' > form';
//console.log(activeForm);
$(activeForm).addClass('animated fadeIn');
//set timer to 1 seconds, after that, unload the animate animation
setTimeout(function() {
$(activeForm).removeClass('animated fadeIn');
}, 1000);
});
});
})(jQuery);
,我總是得到同樣的錯誤:
ReferenceError: jQuery is not defined
})(jQuery);
你有什麼想法嗎?此代碼來自主題模板(Metis Bootstrap Admin Template)。
你仍然有錯誤或是否與CDN網址解決了嗎? –