上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 68 下一页
摘要: Windows contains a version of .NET by default. Here's a listing of them. XP .NET v1.0 -- Service pack 1 .NET v2.0 -- Service packs 2 & 3 Vista .NET v3 阅读全文
posted @ 2016-09-18 17:45 特洛伊-Micro 阅读(794) 评论(0) 推荐(0)
摘要: 1 if (jQuery && !jQuery.fn.forEach) { 2 $(function () { 3 (function ($) { 4 $.fn.extend({ 5 forEach: function (predicate) { 6 7 if ... 阅读全文
posted @ 2016-09-14 19:31 特洛伊-Micro 阅读(930) 评论(0) 推荐(0)
摘要: Array.prototype.forEach = function (action) { for (var i = 0; i < this.length; i++) { action(this[i]); }};/** * 以jqery 对象的方式迭代对象 * @param {} action * 阅读全文
posted @ 2016-09-14 18:23 特洛伊-Micro 阅读(401) 评论(0) 推荐(0)
摘要: 本章节介绍如何掌握Javascript里的数字和日期类型 数字EDIT 在 JavaScript 里面,数字都是双精度浮点类型的 double-precision 64-bit binary format IEEE 754 (也就是说一个数字只能在 -(253 -1) 和 253 -1之间)。没有特 阅读全文
posted @ 2016-09-14 18:05 特洛伊-Micro 阅读(1528) 评论(0) 推荐(0)
摘要: JavaScript 有两种比较方式:严格比较运算符和转换类型比较运算符。对于严格比较运算符(三个 =)来说,为ture的情况是仅当两个操作数拥有相同的类型,而对于被广泛使用的比较运算符(两个 =)来说,会在进行比较之前,将两个操作数转换成相同的类型。对于关系运算符(两个==)来说,会先将操作数转为 阅读全文
posted @ 2016-09-14 17:26 特洛伊-Micro 阅读(483) 评论(0) 推荐(0)
摘要: False values 下面这些值将被计算出 false (also known as Falsy values): false undefined null 0 NaN 空字符串 ("") 当传递给条件语句时,所有其他值,包括所有对象会被计算为 true 。 请不要混淆原始的布尔值true和fa 阅读全文
posted @ 2016-09-14 14:33 特洛伊-Micro 阅读(237) 评论(0) 推荐(0)
摘要: // x has not been declared before if (typeof x 'undefined') { // evaluates to true without errors // these statements execute } //如果未定义变量,那么会出现引用错误 if 阅读全文
posted @ 2016-09-14 11:30 特洛伊-Micro 阅读(399) 评论(0) 推荐(0)
摘要: HTTP状态码 304 页面未修改 功能:304页面未修改 自从上次请求后,请求的网页未修改过。服务器返回此响应时,不会返回网页内容。如果网页自请求者上次请求后再也没有更改过,您应将服务器配置为返回此响应(称为 If-Modified-Since HTTP 标头)。服务器可以告诉 Googlebot 阅读全文
posted @ 2016-09-14 10:52 特洛伊-Micro 阅读(719) 评论(0) 推荐(0)
摘要: 参考文献:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Language_Resources 阅读全文
posted @ 2016-09-14 09:59 特洛伊-Micro 阅读(387) 评论(0) 推荐(0)
摘要: list of ECMAScript engines From Wikipedia, the free encyclopedia An ECMAScript engine is a program that executes source code written in a version of t 阅读全文
posted @ 2016-09-14 09:55 特洛伊-Micro 阅读(499) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 68 下一页