怎么对jquery对象进行扩展
怎么对jquery对象进行扩展
操作方法
- 01
这里对jQuery的log对象进行扩展作为演示 $.extend({ log: function(message) { var now = new Date(), y = now.getFullYear(), m = now.getMonth() + 1, //!JavaScript中月分是从0开始的 d = now.getDate(), h = now.getHours(), min = now.getMinutes(), s = now.getSeconds(), time = y + '/' + m + '/' + d + ' ' + h + ':' + min + ':' + s; console.log(time + ' My App: ' + message); } }) $.log('initializing...'); //调用 如图。
- 02
打开火狐浏览器,打开firebug控制台,如图对jquery的log对象扩展成功。
赞 (0)