$(document).ready()의 코드는 페이지 콘텐츠가 로드된 후에 실행됩니다. 코드를 스크립트 태그에 직접 작성하면 페이지가 로드될 때 스크립트 태그 내부의 코드가 실행됩니다. 이때 태그에서 실행된 코드가 아직 로드되지 않은 코드나 DOM을 호출하면 오류가 보고됩니다. 물론 스크립트 태그를 페이지 끝에 넣으면 문제가 없습니다. 효과는 준비와 동일합니다.
$(document).ready(function(){})는 $(function(){})로 축약될 수 있습니다.
단락을 클릭하면 다음 단락이 숨겨집니다.
<html> <head> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>If you click on me, I will disappear.</p> </body> </html>
$(document).ready(function() {})가 제거되면 단락을 숨길 수 없습니다.
<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $("p").click(function(){ $(this).hide(); }); </script> </head> <body> <p>If you click on me, I will disappear.</p> </body> </html>
그러나 페이지 끝에 스크립트를 넣으면 숨겨진 효과가 복원될 수 있습니다.
<html> <head> </head> <body> <p>If you click on me, I will disappear.</p> </body> <script type="text/javascript" src="jquery-1.7.2.min.js"></script> <script type="text/javascript"> $("p").click(function(){ $(this).hide(); }); </script> </html>
요약:
$(document).ready의 코드는 페이지 콘텐츠가 로드된 후 실행됩니다. 페이지가 로드되면 스크립트 태그가 실행되는 경우. 코드가 아직 로드되지 않은 코드 또는 DOM을 호출하면 오류가 보고됩니다.
물론, 스크립트 태그를 페이지 마지막에 넣어주시면 별 문제가 없고 효과도 레디와 비슷할 것입니다