12 2013 档案
摘要:有一些非常有用的工具函数组成。包括collection,Array,object,function等。API参考:http://underscorejs.org http://www.css88.com/doc/underscore(中文)
阅读全文
摘要:1.jquery.fn.extend和jquery.extendjquery.fn.extend是向jquery中的prototype中添加方法或者属性,而jquery.extend是向jquery本身加入方法或属性。用面向对象的思想理解就是jquery.fn.extend是添加实例方法或属性,jquery.extend是添加静态方法或属性。jquery.fn.extend添加的方法或属性,需要实例化jquery后才能访问,比如$("#id").method(),一般用来添加插件,其中$("#id")就是实例化jquery对象jquery.extend添
阅读全文
摘要:js中的event对象包含很多有用的信息target:触发事件的元素。currentTarget:事件绑定的元素。两者在没有冒泡的情况下,是一样的值,但在用了事件委托的情况下,就不一样了,例如: fsda ewre qewe xvc 134 如果点击li,console上的情况如下:------target---------currentTarget
阅读全文