摘要:
1.callbacks.add(callbacks)//回调列表中添加一个回调或回调的集合// a sample logging function to be added to a callbacks listvar foo = function( value ){ console.log( ... 阅读全文
摘要:
1.event.currentTarget//在事件冒泡阶段中的当前DOM元素$("p").click(function(event) { alert( event.currentTarget === this ); // true }); 2.event.data//当前执行的处理器被绑... 阅读全文
摘要:
1.jQuery.support//一组用于展示不同浏览器各自特性和bug的属性集合2.jQuery.browser//浏览器内核标识。依据 navigator.userAgent 判断。可用值: safariopera msiemozilla3.jQuery.browser.version//浏览... 阅读全文