摘要: 一、JavaScript的一些语言特性 1.当我们声明一个函数时,实际上是定义了一个函数类型的对象。如下所示,下面三种方式定义函数对象结果是一样的。 var func = function(){ //....define code goes there.}function func (){ // ...define code goes there.}var fun... 阅读全文
posted @ 2013-11-17 23:58 Luan Louis 阅读(254) 评论(0) 推荐(0)