摘要: Change this: Microsoft Visual Studio Solution File, Format Version 9.00# Visual Studio 2005 Into this: Microsoft Visual Studio Solution File, Format Version 10.00# Visual Studio 2008阅读全文
摘要: 在这有个反面例子。。。。http://alansun.javaeye.com/blog/290702 (我都不知道,此人的代码怎么跑成功了的, 还有下面一个评论好用的。。是怎么用起了的。。。难道他们用的只用IE?当我没说。) …DOM ConstantsThese constants are the legal values of the eventPhase property; th...阅读全文
摘要: On Error Resume Next 'Try Dim i : i = 1/0 '产生一个错误If Err.Number = 1 Then 'catch number = 1的错误 'doNothingEnd ifIf Err.Number = 2 Then 'catch number = 2的错误 Err.Raise Err.Number 'throwEnd ifIf Err.Number...阅读全文
摘要: Object.prototype.getType = function () { var ctor = this.constructor; if (typeof (ctor) != 'function') return; var reg = new RegExp(/function\ ([\w\$\_][\w\$\_\d]*)\(.*/gmi); var matches = reg.exe...阅读全文
摘要: who is Ajax? 特洛伊(Troy)看过没?阿伽门侬(Agamemnon)手下除了阿基里斯(Achilles, 战神,敏捷型英雄)的排行老二的那个大个(ajax,使锤的,力量型的哈)。就是那后来被赫克托(Hektor,大王子)杀了(秒杀)的那个。 what is Ajax? XMLHttpRequest + Javascript what is XMLHttpRequest ? loo...阅读全文