javascript – 将jQuery与’use strict’结合使用的正确方法是什么?

前端之家收集整理的这篇文章主要介绍了javascript – 将jQuery与’use strict’结合使用的正确方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有以下内容
"use strict";

$(document).ready(function () {

});

我收到了警告

'$'is not defined

解决方法

( function ( $) {
    'use strict';
    $( document ).ready( function () {
        console.log( 'working!' )
    })
} ( jQuery ) )
原文链接:https://www.f2er.com/jquery/155513.html

猜你在找的jQuery相关文章