jQuery
iteye_16154
这个作者很懒,什么都没留下…
展开
-
jQuery $.each的用法说明
jQuery中$.each的用法,学习jquery的朋友可以参考下。 [code="js"]var arr1 = [ "a", "b", "c", "d", "e" ]; $.each(arr1, function(){ alert(this); });[/code] 输出:a b c d e [code="js"]var arr2 =原创 2012-02-14 17:39:11 · 117 阅读 · 0 评论 -
JQuery -- this 和 $(this) 的区别
起初以为this和$(this)就是一模子刻出来。但是我在阅读时,和coding时发现,总不是一回事。 [b]What is "this"?[/b] In many object-oriented programming languages, this (or self) is a keyword which can be used in instance methods to refer t...原创 2011-11-16 10:27:51 · 129 阅读 · 0 评论