本篇文章介紹了jQuery中$(function())的作用,具有一定的參考價值,希望對學習jQuery和JavaScript的朋友有幫助!
jQuery中$(function())的作用
$(function())等同於$(document). ready(function()),意思很簡單,就是等頁面載入完畢之後,才開始執行函數。
在沒有使用$(function())之前,我的$("body").click()的操作不起作用,先執行函數了,此時DOM並沒有載入完成,所以不起效果。將js函數放入$(function())後,就可以正常運作。
$(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教學 欄目,歡迎學習!
以上是jQuery中$(function())的作用的詳細內容。更多資訊請關注PHP中文網其他相關文章!