标签:
Javascript:基于对象与事件驱动的脚本语言,主要用于客户端
var x = 4;(无明显类型) 3140/1000*1000=3140 typeof(123) = number "12"+1="121" typeof("abc") = string "12"-1="1" typeof(3.45) = number "99"-1=NaN(非法字符)
Array.prototype.max = getMax();var Array = [3,5,8];
var ret = Array.max();document.write(ret);....
也可以直接Array.prototype.max = function(){...;return;};
也可以使用.js文件,在想使用的.html中导入.js文件即可,如trim()方法。
String.prototype.trim = function(){ var start = 0,end = this.length - 1; while(start <= end && this.charAt(start)==""){ start++; } while(start <=end && this.charAt(end)==""){ end--; } return this.substring(start,end); };
function Person(x,y){ //相当于定义类 this.age = x; this.name = y; this.show = function(){....}; } var p = new Person(...,...); p.number = xxx; //任意加入属性成员
Person类也能加入新功能,Person.prototype.toString = function(){....};
p1.get(); --> set();get();}
标签:
原文地址:http://www.cnblogs.com/Bestsonic/p/4322584.html