上一页 1 ··· 98 99 100 101 102 103 104 105 106 ··· 118 下一页
摘要: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Closures?redirectlocale=en-US&redirectslug=JavaScript%2FGuide%2FClosureshttp://www.jibbering.com/faq/notes/closures/http://howtonode.org/why-use-closurehttp://lostechies.com/derekgreer/2012/02/17/javascript-closures-explained/http://r 阅读全文
posted @ 2013-06-19 15:22 daishuguang 阅读(199) 评论(0) 推荐(0) 编辑
摘要: http://www.jibbering.com/faq/notes/closures/http://hi.baidu.com/bluedream_119/item/938dcd082b1e18803d42e250http://www.jibbering.com/faq/notes/closures/ 阅读全文
posted @ 2013-06-19 10:17 daishuguang 阅读(171) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/8065f87fcc0f182330249841.htmlhttp://blog.knowsky.com/195154.htmhttp://blog.csdn.net/fgh2009/article/details/7176877http://www.cnblogs.com/sunliming/archive/2010/10/11/1847750.htmlhttp://blog.csdn.net/cxwen78/article/details/6863696http://hi.baidu.com/cin_ie/item/3e96 阅读全文
posted @ 2013-06-17 22:18 daishuguang 阅读(247) 评论(0) 推荐(0) 编辑
摘要: http://blind.iteye.com/blog/604244http://w3ctech.com/p/812http://database.51cto.com/art/201008/218533.htmhttp://developer.51cto.com/art/200906/129502.htmhttp://www.ituring.com.cn/article/898 阅读全文
posted @ 2013-06-16 02:32 daishuguang 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Object--->Data那么如何声明类-->并非数据Object--declarevar obj1=new Object();var obj2=new Boolean;var date1=new date();var obj3={};var obj4={name:'roboce',age:21};BOM,DOM,Js ObjectArray,Boolean,Date,Math,Number,String,RegExp,Global,javascript基本组成Object,variable,functionObject--save data(property,a 阅读全文
posted @ 2013-06-15 20:55 daishuguang 阅读(154) 评论(0) 推荐(0) 编辑
摘要: http://tech.sina.com.cn/i/csj/2013-03-18/15048156721.shtmlhttp://it.people.com.cn/GB/12605530.htmlhttp://business.sohu.com/20111123/n326607893.shtmlhttp://www.soft6.com/v9/2012/pldj_0208/169283.htmlhttp://news.51zjxm.com/bangdan/20120717/18402.html互联网公司怎么挣钱 阅读全文
posted @ 2013-06-14 16:47 daishuguang 阅读(150) 评论(0) 推荐(0) 编辑
摘要: blogs.technet.com/b/speschka/archive/2012/07/23/using-query-rules-result-types-and-display-templates-for-a-custom-search-sales-report-in-sharepoint-2013.aspxhttp://blogs.msdn.com/b/murads/archive/2012/10/11/utilizing-web-apps-2010-to-get-powerpoint-previews-of-sharepoint-2010-content-from-sharepoint 阅读全文
posted @ 2013-06-14 12:44 daishuguang 阅读(164) 评论(0) 推荐(0) 编辑
摘要: http://www.douban.com/note/192234987/ 阅读全文
posted @ 2013-06-13 04:51 daishuguang 阅读(124) 评论(0) 推荐(0) 编辑
摘要: http://www.w3school.com.cn/html/html_scripts.asp<html><body><scripttype="text/javascript"><!-- document.write("Hello World!"); //--> </script></body> 阅读全文
posted @ 2013-06-11 16:45 daishuguang 阅读(125) 评论(0) 推荐(0) 编辑
摘要: http://www.ruanyifeng.com/blog/2012/07/three_ways_to_define_a_javascript_class.htmlhttp://www.cnblogs.com/lidabo/archive/2011/12/17/2291238.htmlhttp://www.cnblogs.com/lucas/archive/2009/03/14/1411322.htmlhttp://www.dreamdu.com/javascript/json/http://blog.jobbole.com/23563/http://www.cnblogs.com/luca 阅读全文
posted @ 2013-06-10 12:15 daishuguang 阅读(191) 评论(0) 推荐(0) 编辑
摘要: http://www.link888.cn/index.php?load=read&id=500对Javascript来说,方法在本质上也是一种属性。构 造方法和构造属性一样,它是分别存储于每个实例之中的,相互之间是完全独立。原型方法和原型属性一样,他是存储于原型中的,每个实例中存储的实际上一 个指向原型的指针。所有对原型方法的修改会影响到所有实例,而构造方法实际上只能通过实例来访问和修改,也只会影响到相应的实例。先写结论:方法通常应该使用原型模式定义,并且在必要时通过原型来动态重定义,避免使用构造模式定义方法。看看示例代码吧:我们首先构造一个简单的类car,定义2个方法,分别是构造方 阅读全文
posted @ 2013-06-10 11:59 daishuguang 阅读(156) 评论(0) 推荐(0) 编辑
摘要: operator:,----var a=1,b=2;;----var a=1;=----var a=1;+-*/%>>=<<=>>>=wordvarargumentsnewtruefalsenullundefinedNaNObjectArrayStringBooleanNumbertypeofinstanceoffunction(){}''.||&&!:,[]'use strict'controlreturncontinuefunctionwidthvoidif...else...do...while.. 阅读全文
posted @ 2013-06-07 14:55 daishuguang 阅读(204) 评论(0) 推荐(0) 编辑
摘要: primitive type:undefined, number, string, boolean, nulltypeof:(undefined)undefined, (12)number, ('1234')string, (true)boolean, (null)objecttypeof:Number:functionString:functionBoolean:functionObject:functionArray:functionreference type:null instanceof Object 阅读全文
posted @ 2013-06-07 14:31 daishuguang 阅读(146) 评论(0) 推荐(0) 编辑
摘要: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\FEATURES\fields 阅读全文
posted @ 2013-06-06 17:18 daishuguang 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Microsoft.Practices.ServiceLocation.dll, Microsoft.Practices.SharePoint.Common.dllhttp://msdn.microsoft.com/en-us/library/ff798371.aspxsharepoint resource folder _ctshttp://office.microsoft.com/en-us/windows-sharepoint-services-help/change-a-site-content-type-HA010097877.aspxhttp://blogs.msdn.com/b/ 阅读全文
posted @ 2013-06-06 13:07 daishuguang 阅读(113) 评论(0) 推荐(0) 编辑
上一页 1 ··· 98 99 100 101 102 103 104 105 106 ··· 118 下一页