如果我有以下内容
"use strict";
$(document).ready(function () {
});
我收到了警告
'$'is not defined
答案 0 :(得分:19)
( function ( $ ) {
'use strict';
$( document ).ready( function () {
console.log( 'working!' )
})
} ( jQuery ) )
答案 1 :(得分:0)
您是否在网站上添加了jQuery?
在tinker.io上尝试相同的代码会产生错误,但随后添加了jQuery lib,错误就会消失。
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>