這篇文章主要為大家詳細介紹了jQuery中$(function())的作用是什么,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
目前創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機、網(wǎng)站托管維護、企業(yè)網(wǎng)站設(shè)計、佛坪網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
jQuery中$(function())的作用
$(function())等同于$(document).ready(function()),意思很簡單,就是等頁面加載完畢之后,才開始執(zhí)行函數(shù)。
在沒有使用$(function())之前,我的$("body").click()的操作不起作用,先執(zhí)行函數(shù)了,此時DOM并沒有加載完成,所以不起效果。在將js函數(shù)放入$(function())后,就可正常運行。
$(function(){//五分鐘無操作,返回系統(tǒng)首頁,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); })
以上就是jQuery中$(function())的作用是什么的簡略介紹,當然詳細使用上面的不同還得要大家自己使用過才領(lǐng)會。如果想了解更多,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道哦!