在正文中加载脚本 js 文件后是否调用 $(document).ready() ?
如果我将 $(document).ready() 放在脚本元素的头部,该元素采用回调函数,该函数使用在文件中声明的函数,其脚本元素像这样加载到正文中:
<!DOCTYPE HTML>
<html>
<script src="jquery.js" type="text/javascript"></script>
<script>
$(function(){
hello();
})
</script>
<head>
</head>
<body>
<script src="http://somewhere/helloFuncDeclaration.js" type="text/javascript"></script>
</body>
</html>
这样做是否正确并保证在调用函数 hello() 之前将加载 helloFuncDeclaration.js ?