global是乙個固有物件(全域性),不屬於任何物件,目的是把所有全域性方法集中在乙個物件中。
這裡挑幾個常用的global方法
1、uri編碼解碼方法
編碼(encodeuri/encodeuricomponent)
alert(encodeuricomponent(uri));解碼(decodeuri/decodeuricomponent)
該方法相當於乙個js解析器,能夠執行傳入的任何js**
eval("alert('hello')");
//等價於alert('hello');
eval("function sayhello()");
sayhello();//hello
//將乙個字串轉換成乙個物件
eval("var obj=" + response.responsetext);
alert(obj.***x);
js 引用型別之Array型別
1.concat 方法 不會改變原陣列,會複製乙個原陣列的副本進行拼接 var arr red zhansan xin var arr2 arr.concat 2 3 9 console.log arr red zhansan xin console.log arr2 red zhansan xin...
js引用型別之Array型別
第一種是使用array 建構函式,如下所示 var array new array 第二種是使用陣列字面量表示法。由一組包含陣列項的方括號表示,多個陣列之間以逗號隔開。如下所示 var array red blue black 在陣列中length屬性不只是可讀的,通過設定這個屬性,可以在陣列末尾新...
JS 引用型別之Math
math物件包含了一些計算中可能會用到的一些特殊值,例如 math.pi代表圓周率 常用方法 1 max和min 取最大值和最小值 var max math.max 3,54,32,16 alert max 54 var min math.min 3,54,32,16 alert min 3 var...