javascript
Luciano9esu
这个作者很懒,什么都没留下…
展开
-
Prototype1.5.1.1代码注释(一)
本着学习的目的添加的注释,本人js水平很差,有不对的地方请各位一定多多指教。 /* Prototype JavaScript framework, version 1.5.1.1 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style lic...2008-01-28 17:22:50 · 195 阅读 · 0 评论 -
看prototype时一个很巧妙的地方。
if (function() { var i = 0, Test = function(value) { this.key = value }; Test.prototype.key = 'foo'; for (var property in new Test('bar')) i++; return i > 1;}()) Hash.prototype._each = fun...2008-01-29 13:10:39 · 96 阅读 · 0 评论 -
Prototype1.5.1.1代码注释(二)
var Ajax = { getTransport: function() { /*之前定义的Try.these终于派上用场了*/ return Try.these( function() {return new XMLHttpRequest()}, function() {return new ActiveXObject('Msxml2.XMLHTTP')...2008-01-30 10:20:32 · 184 阅读 · 0 评论 -
Prototype1.5.1.1代码注释(三)
/*用的最多的怕就是这个方法了吧*/function $(element) { if (arguments.length > 1) { for (var i = 0, elements = [], length = arguments.length; i < length; i++) elements.push($(arguments[i])); re...2008-01-31 15:06:18 · 190 阅读 · 0 评论 -
分特一下,prototype1.6.0.2出来了
分特一下,1.6.0.2出来了,大概看了一下,代码还是发生了不少变化,看完手头的1.5.1.1再回头看看1.6.0.2当作温习吧 :?: 不过这个新版本也太庞大了点儿,没有压缩前整整有127k,自己做项目的话不进行裁剪恐怕是没法用了。...2008-02-02 12:25:28 · 132 阅读 · 0 评论 -
两个个关于javascript的scope的有趣的例子
// Functions can see changes in variable values after the function is definedvar myFunction = function() { var foo = "hello"; var myFn = function() { console.log( foo ); };...原创 2013-03-03 23:00:55 · 167 阅读 · 0 评论 -
关于在phonegap中使用jquery mobile的一个小问题。
其实这个事情本身和phonegap没有什么关系,不过是我在使用phonegap的过程中碰到的而已。er问题是这样的,我在本地(assets/www目录)定义了一个htm,其中代码如下:<!DOCTYPE html><html> <head> <meta charset="utf-8"> <...原创 2013-03-04 00:09:52 · 133 阅读 · 0 评论 -
JQuery: $.Proxy 的两个例子,有助于理解javascript的scope
$.proxyReturns a function that will always run in the provided scope — that is, sets the meaning of this inside the passed function to the second argument.var myFunction = function() { con...原创 2013-03-04 11:13:27 · 140 阅读 · 0 评论