JavaScript
文章平均质量分 69
筋斗云王
这个作者很懒,什么都没留下…
展开
-
AJAX 学习笔记--$的用法
javascript 是面向对象的语言,这里的对象就是不同的function var jQuery = window.jQuery = window.$ = function(selector, context) { // ... // other internal initialization code goes here原创 2013-04-10 14:46:21 · 571 阅读 · 0 评论 -
声明变量时是否使用var的不同
是否使用var声明变量,结果是不同的,使用var声明的变量是局部的,反之是全局的! For example, when we use the keyword var, the JavaScript will create a variable in the current (or local) scope of the code block you are adding the code原创 2013-04-10 14:46:27 · 598 阅读 · 0 评论