Jquery 有一个ready
方法:
$(document).ready(function(){
// my code
})
当 dom 准备好时,它将执行我的代码。
我有一个问题,如果我将所有脚本都放在 之后</body>
,例如
<html>
<body>
// all kinds of html tags
</body>
<script src="/path/to/jquery.js"></script>
<script src="/path/to/all-javascript-compressed-in-one-file.js"></script>
</html>
我还需要写$(document).ready()
吗?dom已经ready
在后面了</body>
吗?