javascript对象讨论
froshloveC
这个作者很懒,什么都没留下…
展开
-
tab view 標簽切換對象的編寫
var dotA = { trim:function(string){ return string.replace(/^\s+|\s+$/g,''); }, /* id className or Dom Elements */ one:function(selector){ selector = this.trim(selector); if(typeof sel...2010-08-24 12:35:44 · 83 阅读 · 0 评论 -
javascript 对象和对象继承
/* 以下是个简单的继承的例子 就是Student继承了Person */ function Person(name,sex){ this.name = name; this.sex = sex; }; Person.prototype = { setName:function(name){ this.name = name; }, getNam...2011-01-15 13:53:44 · 105 阅读 · 0 评论 -
js中的比較問題
"" == "0" // false 0 == "" // true 0 == "0" // true false == "false" // false false == "0"原创 2011-03-14 18:06:36 · 97 阅读 · 0 评论