본 글은 jQuery에서 $(function())의 역할을 소개하는데, 이는 일정한 참고값을 가지고 있으며, jQuery와 JavaScript를 배우는 친구들에게 도움이 되길 바랍니다!
jQuery
$(function())에서 $(function())의 역할은 $(document).ready(function())과 동일합니다. 즉, 의미는 매우 간단합니다. 페이지가 로드된 후 함수 실행을 시작하면 됩니다.
$(function())을 사용하기 전에는 $("body").click() 작업이 작동하지 않았습니다. 이때 DOM이 로드되지 않아 아무런 효과가 없었습니다. $(function())에 js 함수를 넣어주면 정상적으로 실행될 수 있습니다.
$(function(){//五分钟无操作,返回系统首页,timeToreturn.js function timeToReturn(){ window.location.href = "http://localhost:8080/zhongCourt/"; } var nowtime = Date.parse(new Date()); var timeend = Date.parse(new Date()); $("body").click(function(){ nowtime = Date.parse(new Date()); console.log("nowtime" + nowtime); }); function check(){ timeend = Date.parse(new Date()); console.log("check"); if((timeend - nowtime) > 300000){ timeToReturn(); } setTimeout(check,10000); } setTimeout(check,10000); })
이 기사는 js tutorial 칼럼에서 가져온 것입니다. 배우신 것을 환영합니다!
위 내용은 jQuery에서 $(function())의 역할의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!