如果我有类似以下的东西
"use strict";
$(document).ready(function () {
});
我收到警告
'$'is not defined
如果我有类似以下的东西
"use strict";
$(document).ready(function () {
});
我收到警告
'$'is not defined
( function ( $ ) {
'use strict';
$( document ).ready( function () {
console.log( 'working!' )
})
} ( jQuery ) )
您是否将 jQuery 添加到您的网站?
在 tinker.io 上尝试相同的代码会产生错误,但随后添加 jQuery 库,错误就会消失。
CDN:http ://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
使用此代码段添加它
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>