我对 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>
谁能告诉我这里发生了什么?
提前致谢。
编辑:抱歉缺少括号,这只是一个错字