摘要: <script type="text/javascript"> function Base(){ //构造函数 类 } //累成员 Base.prototype.init=function(){ alert('Base hello'); } //实例对象 var bs=new Base(); //调用 bs.init();<... 阅读全文
posted @ 2013-03-31 20:14 microsoftzhcn 阅读(196) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> //创建命名空间:jSite.Import(namespace) //创建命名空间的同时执行方法过程和实例对象 //引用:var o=jS.using(namespace,class);或var o=jS.using(namespace); //实例:var o=jS.using('System.Images'); (function(window, undefined) { var document = window.document, navigator = window.nav 阅读全文
posted @ 2013-03-31 19:46 microsoftzhcn 阅读(318) 评论(0) 推荐(0) 编辑
摘要: js对象如何合并?var o1={hello:1};var o2={world:2}怎样合并得到o3{hello:1,world:2}var extend=function(o,n,override){ for(var p in n) if(n.hasOwnProperty(p) && (!o.hasOwnProperty(p) || override))o[p]=n[p]; }; var o1={hello:1}; var o2={world:2}; extend(o1,o2); alert(o1.world); aler... 阅读全文
posted @ 2013-03-31 01:39 microsoftzhcn 阅读(360) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>把生成命名空间的方法绑定在jQuery上</title> <script src="/static/js/j 阅读全文
posted @ 2013-03-31 00:06 microsoftzhcn 阅读(3046) 评论(0) 推荐(0) 编辑