最新文章列表

网页中嵌入Flash的方法讨论

转:http://www.blueidea.com/tech/multimedia/2006/4322.asp Flash 嵌入的问题论坛中有人问了好多次,到底应该怎么用,为什么通不过验证,要通过验证怎么办等等等 ...
Virgo_S 评论(0) 有1559人浏览 2008-07-04 09:19

建议使用 safari 3的朋友升到 4 preview

关键问题是 3 老是卡机 。打开一个网页就死在那了。看到有些资料说是对flash支持不好?? 反正我是深受其害啊。总是看得兴致正浓时死掉。 下载4后,有2个文件一个是basic包,如果没有安装3的朋友安装这个包。 如果安装了3的,直接使用另外一个包advance包升级即可。 另外发现 我卸载3后 在使用basic包安装后出错,无法启动safari 。最后还是重新把3装上后, 再使用a ...
wutao8818 评论(0) 有1408人浏览 2008-07-01 19:49

String.prototype.split

/* 官网原文: ES3 states that “If separator is a regular expression that contains capturing parentheses, then each time separator is matched the results (including any undefined results) of the capt ...
kuangbaoxu 评论(0) 有1119人浏览 2008-06-30 17:18

Array.prototype.unshift

/* 官网原文: Array.unshift prepends its arguments to the start of the array and is supposed to return the length of the resultant array. The returned value of this function call in JScript is “undefine ...
kuangbaoxu 评论(0) 有1235人浏览 2008-06-30 17:01

Array.prototype.join

/* JScript does not default the separator to “,” if the separator value is undefined. */ var array = [1, 2]; alert(array.join()); alert(array.join(undefined)); alert(array.join('-')); /* ...
kuangbaoxu 评论(0) 有1228人浏览 2008-06-30 16:59

The try statement:

/* 官网原文: In JScript, the variable used to hold a caught exception is visible in the enclosing scope. The variable exists after the catch clause has finished executing but ceases to exist after the ...
kuangbaoxu 评论(0) 有773人浏览 2008-06-30 15:52

Enumerating shadowed

/* 官网原文: Custom properties that shadow [[DontEnum]] properties on Object.prototype are not enumerated using for-in. In the following example toString is a property available on Object.prototype and ...
kuangbaoxu 评论(0) 有974人浏览 2008-06-30 15:46

Function Declarations within bodies

/* 官网原文: When a function is defined using a function declaration, JScript binds the function to the global scope regardless of any scope changes introduced by with clauses. */ var v = 'va ...
kuangbaoxu 评论(0) 有988人浏览 2008-06-30 15:44

CSS2.0中最常用的18条技巧

一、使用css缩写  使用缩写可以帮助减少你CSS文件的大小,更加容易阅读。   具体内容请浏览:CSS常用缩写语法 二、明确定义单位,除非值为0。 ...
mtou 评论(3) 有2473人浏览 2008-06-26 22:57

Function Expressions scope

/* 官网原文: In JScript the identifier in a function expression is visible in the enclosing scope because such expressions are treated as function declarations. Example: */ <script> ...
kuangbaoxu 评论(0) 有1032人浏览 2008-06-26 20:46

Array Initialiser 要小心

/* Trailing commas in array literals add to the length, but they shouldn‟t. JScript treats the empty element after the trailing comma as undefined. Example: */ <script> document.w ...
kuangbaoxu 评论(0) 有994人浏览 2008-06-26 20:05

全局函数不能被迭代

/* 官网原文: In JScript, global functions cannot be iterated using the global this object. Example: */ <script> var __global__ = this; function invisibleToIE() ...
kuangbaoxu 评论(0) 有1074人浏览 2008-06-26 20:02

奇怪的 Arguments 对象

/* 注意每个浏览器的实现方式不同,他们处理的方法也不同. 官网原文: There is no uniform handling of a variable named arguments amongst the various script engine implementations. Example: */ <script> func ...
kuangbaoxu 评论(0) 有1076人浏览 2008-06-26 19:43

注意字符串中的 "\"

/* 官网原文: JScript allows C-style escaped newlines in string literals; according to ES3 this would be a syntax error for unterminated string constant Example: */ <script> ...
kuangbaoxu 评论(0) 有1299人浏览 2008-06-26 19:35

特殊的转义字符 "\v"

/* 官网原文: JScript does not support the \v vertical tab character as a white space character. It treats \v as v. Example: */ <script> alert('\v supported ' + (String.fromCharC ...
kuangbaoxu 评论(2) 有2643人浏览 2008-06-26 19:25

Make an HTTP Request

[edit] Step 1 – How to Make an HTTP Request In order to make an HTTP request to the server using JavaScript, you need an instance of a class that provides this functionality. Such a class was original ...
kuangbaoxu 评论(0) 有3642人浏览 2008-06-25 18:17

收藏了一些CSS常用的技巧

一、使用css缩写   使用缩写可以帮助减少你CSS文件的大小,更加容易阅读。   具体内容请浏览:CSS常用缩写语法 二、明确定义单位,除非值为0。   忘记定义尺寸的单位是CSS新手普遍的错误。在HTML中你可以只写width="100",但是在CSS中,你必须给一个准确的单位,比如:width:100px width:100em。只有两个例外情况可以不定义单位:0值。 ...
liubaoshan 评论(0) 有989人浏览 2008-06-23 23:44

java script 继承的实现

ECMAScript 中实现继承的方式不止一种。这是因为 JavaScript 中的继承机制并不是明确规定的,而是通过模仿实现的。这意味着所有的继承细节并非由解释程序处理。 对象冒充--- 构造函数使用 this 关键字给所有属性和方法赋值(即采用类声明的构造函数方式)。因为构造函数只是一个函数,所以可使 ClassA 的构造函数成为 ClassB 的方法,然后调用它。 ClassB 就会 ...
kuangbaoxu 评论(1) 有1618人浏览 2008-06-20 20:25

javascript学习笔记(七)---继承的实现

ECMAScript 中实现继承的方式不止一种。这是因为 JavaScript 中的继承机制并不是明确规定的,而是通过模仿实现的。这意味着所有的继承细节并非由解释程 ...
nomadyyj 评论(2) 有1175人浏览 2008-06-19 14:16

Firefox 3发布挑战IE、Safari

北京时间6月18日(三)凌晨一点,Mozilla基金会发布新版Firefox3.0。 为配合firefox 3的发布Mozilla在全球范围内推出2008firefox下载日,来冲击当日下载的吉尼斯纪录。 据国外媒体报道称,网络应用公司(Net Applications)公布的资料显示,Firefox的全球市场份额超过了18%。通过发布Firefox 3,Mozilla的下载量和市场份额将得到进一 ...
purpen 评论(0) 有1282人浏览 2008-06-18 15:47

最近博客热门TAG

浏览器(34330) Blog(32212) Google(26470) 网络应用(23512) IE(21696) 互联网(13881) QQ(11035) Firefox(9275) 网络协议(9099) 搜索引擎(8705) 百度(7940) BBS(4716) Gmail(3793) 防火墙(3687) Chrome(3205) 360(3012) 云计算(2849) 腾讯(2715) Yahoo(2236) WordPress(2094)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics