HTML コード内の jQuery コードに問題があります。
HTML コードに次のコードを記述すると、完全に機能します ("hello world" というアラートが表示されます)。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"> </script>
<script>
alert("hello world");
</script>
</head>
</html>
しかし、次のコードを ($(document).ready 関数を使用して) 記述しても機能せず、理由がわかりません。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"> </script>
<script>
$(document).ready(function() {
alert("hello world");
});
</script>
</head>
</html>
ここで何が起こっているのか誰か教えてもらえますか?
前もって感謝します。
編集:括弧が欠けていてすみません、それは単なるタイプミスでした