2011年2月16日

jquery in action 学习笔记

摘要: 1面对对象的编程1.引用传递在javascript中,string int Boolean 不是按引用进行传递的.而对象和数组是按引用传递的.示例:2.每一个Function中都有一个上下文变量arguments,它是一个伪数组(不可以改变).它代表着当前Function的参数列表.在javascript中,变量的作用域是整个Function,而不是{}.这点有别于c#等其他语言.// A globally-scoped variable, containing the string 'test'var test = "test";// You'll notice that our 'glob 阅读全文

posted @ 2011-02-16 23:12 tneduts 阅读(347) 评论(0) 推荐(0) 编辑

导航