次のようなものがある場合
"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>