84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
我想到一种方法可以使用定时器setTimeout,类似于这样function $(string){ return document.getElementById(string); } setTimeout("",1000); 想请教各位有没有更好的方法呢,也不使用库,其实我很想知道jquery里是怎么操作的。
function $(string){ return document.getElementById(string); } setTimeout("",1000);
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
ready(function(){ // dom ready 后执行这段代码。 });
ready 实现如下:
var isReady = false; var readyList = []; function ready(fn) { if (isReady) { setTimeout(function () { fn() }, 0); return; } readyList.push(fn); } function setReady() { if (isReady) { return; } isReady = true; for (var i = 0, n = readyList.length; i < n; i++) { readyList[i](); } readyList.length = 0; } (function () { if (document.readyState === 'complete') { setTimeout(setReady, 0); } else { document.addEventListener('DOMContentLoaded', setReady); window.addEventListener('load', setReady); } }());
直接看司徒大大的avalon中的https://github.com/RubyLouvre/avalon/blob/master/src/18%20domReady.js 和jquery中的一样。
ready 实现如下:
直接看司徒大大的avalon中的https://github.com/RubyLouvre/avalon/blob/master/src/18%20domReady.js 和jquery中的一样。