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

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

我收到了警告

@H_301_2@'$'is not defined

解决方法

@H_301_2@( function ( $) { 'use strict'; $( document ).ready( function () { console.log( 'working!' ) }) } ( jQuery ) )

猜你在找的jQuery相关文章