JavaScript의 $(function() {....})는 jQuery의 고전적인 사용법으로 $(document).ready(function() {....})와 동일합니다. 페이지가 로드됩니다. 함수를 실행하기 전에 함수에서 DOM을 조작해야 하는 경우 페이지를 로드한 후에 실행하는 것이 더 안전하므로 jQuery를 사용할 때 이 작성 방법이 매우 일반적입니다.
$(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>
JavaScript에서 (function(){})()의 기능과 사용법은 무엇입니까
별거 없습니다. with object
(function(){})() 익명 메서드의 즉각적인 실행을 나타냅니다.
일반적으로 외부 세계와 격리하여 클로저와 유사한 환경을 만들고 변수 충돌을 피하기 위해 범위 체인을 만드는 데 사용됩니다. 🎜>
(function(){ var a; .......... })()