9

如果我有类似以下的东西

"use strict";

$(document).ready(function () {

});

我收到警告

'$'is not defined
4

2 回答 2

23
( function ( $ ) {
    'use strict';
    $( document ).ready( function () {
        console.log( 'working!' )
    })
} ( jQuery ) )
于 2012-04-21T21:50:59.960 回答
0

您是否将 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>
于 2012-04-21T21:50:34.163 回答