摘要:
function ClassA (sColor) { this.color = sColor; this.sayColor = function () { alert(this.color); }}function ClassB (sColor,sName) { this.ne... 阅读全文
摘要:
Function.prototype.toString = function () { return "I wish everyone happy !"}function saySth () { alert("55555");}alert(saySth.toString());//I wis... 阅读全文
摘要:
可以用prototype 属性为任何已有的类定义新方法。例:(判断某项在数组中的位置)Array.prototype.indexof = function (vItem) { for (var i=0; i < this.length; i++) { if (vItem == this[i]) {... 阅读全文
摘要:
var str = "hello";str += "world";*1:创建存储"hello"的字符串。*2:创建存储"world"的字符串。*3:创建存储连接结果的字符串。*4:把str的当前内容复制到结果中。*5:把"world"复制到结果中。*6:更新str,使它指向结果。1:-----------------正常连接字符串------------------------var d1 = new Date();var str = "";for (var i=0; i & 阅读全文