1,function ,包括 arguments, caller,length,name
,prototype,__proto__,2,prototype,又分为constructor:function ()
{},__proto__:Object,3,__proto__从别的原型链继承过来可以直接...
分类:
其他好文 时间:
2014-06-29 13:59:16
阅读次数:
327
看过jQuery源码的人都知道类数组对象,与我们熟知的arguments对象很像构造一个类数组必须有两个条件第一个条件:你必须给对象定义个splice方法,只要他是一个function就可以第二个条件:就是赋值一个length属性,或者增加push,unshift,shift,pop其中任何一个方法...
分类:
编程语言 时间:
2014-06-03 12:33:35
阅读次数:
369
MyEclipse开发内存溢出问题window --> preferences -->
MyEclipse --> servers --> Tomcat --> JDK 里面在Optional Java VM arguments:
下面加如下内容:-Xmx512m -Xms256m -XX:MaxN...
分类:
系统相关 时间:
2014-06-03 08:07:18
阅读次数:
275
这两天因为工作需要,在写一些vbs的脚本,才知道,vbs不能像其他可执行文件一样,在 需要提升访问权限时,弹出UAC窗口,那么,如何通过UAC提升vbs脚本的访问权限呢?
查了一些资料,将结果整理一下:
第一种:
If WScript.Arguments.length =0 Then
Set objShell = CreateObject("Shell.Application")
'...
分类:
其他好文 时间:
2014-06-03 00:18:37
阅读次数:
305
闭包是指有权访问另一个函数作用域中的变量的函数。创建闭包的常见方式为:在一个函数内部创建另一个函数。
“当某个函数被调用时,会创建一个执行环境(execution
context)及相应的作用域链。然后,使用arguments和其他命名参数的值来初始化函数的活动对象(activation ob...
分类:
编程语言 时间:
2014-05-30 20:20:13
阅读次数:
366
Document all functions, their arguments and
return values, and also any interesting or unusual algorithm or technique. Think
of the comments as hints ...
分类:
编程语言 时间:
2014-05-27 18:05:25
阅读次数:
355
Linux命令格式:command [options]
[arguments]command:命令options: 参数[] 表示是可选的; 表示是可变化的; x|y|z 表示只能选择一个;-abc
表示三个参数(或任何二个)的混合使用1.whereis[root@rusk...
分类:
系统相关 时间:
2014-05-26 12:42:32
阅读次数:
386
String.prototype.format = String.prototype.f =
function () { var s = this, i = arguments.length; while (i--) { s =
s.replace(new R...
分类:
编程语言 时间:
2014-05-26 10:49:23
阅读次数:
356
1 function $(){ return
document.getElementById(arguments[0])}; 2 3 /** 4 * 得到上一个元素 5 * @param {Object}
elem 6 */ 7 function prev(elem){ 8...
分类:
Web程序 时间:
2014-05-26 01:49:11
阅读次数:
388
执行SELECT dbms_sqltune.report_tuning_task(:tuning_task) FROM dual; 报错信息如下:
ORA-00600: internal error code, arguments: [kesqsMakeBindValue:obj], [], [],
[], [], [], [], []
ORA-06512: at "SYS.PRVT_...
分类:
数据库 时间:
2014-05-25 16:22:29
阅读次数:
506