在這篇文章中,我將列出10個Javascript實用小技巧,主要針對Javascript新手和中級開發者。希望每個讀者都能至少從中學到一個有用的技巧。
1.變數轉換
看起來很簡單,但據我所看到的,使用建構函數,像Array()或Number()來進行變數轉換是常用的做法。始終使用原始資料類型(有時也稱為字面量)來轉換變量,這種沒有任何額外的影響的做法反而效率更高。
var myVar = "3.14159",int = ~~myVar, // to integer
float = 1*myVar, // to float
bool 🎜>and any number except 0 are true */
array = [myVar]; // to array
轉換日期(new Date(myVar))和正規表示式(new RegExp(myVar))必須使用建構函數,而且建立正規表示式的時候要使用/pattern/flags的形式。
2.十進制轉換為十六進位或八進制,或反過來
你是不是寫個單獨的函數來轉換十六進位(或是八進位)呢?馬上停下吧!有更容易的現成的函數可以用:
程式碼如下:
"C"
(int).toString(8); // converts int to octal, eg. 12 => "14"
parseInt(string,16) // converts hex to int, eg. "FF" => 255
parseInt(string,8) // converts octal to int, eg. "20" => 16
3.玩轉數字
除了上一節介紹的之外,這裡有更多的處理數字的技巧
程式碼如下:
0xFF; // Hex declaration, returns 255
020; // Octal declaration, returns 16
1e3; // Exponential, same as 1 * Math.pow(>1e3; // Exponential, same as 1 * Math.pow(10,33, ), returns 1000
(1000).toExponential(); // Opposite with previous, returns 1e3
(3.1415).toFixed(3); // Rounding the number, returns "3.1415).toFixed(3); // Rounding the number, returns "3.142" >
4.Javascript版本偵測
你知道你的瀏覽器支援哪一個版本的Javascript嗎?如果你不知道的話,就去維基百科查一下Javascript版本表吧。出於某種原因,Javascript 1.7版本的某些特性是沒有廣泛的支援。不過大部分瀏覽器都支援了1.8版和1.8.1版的特性。 (註:所有的IE瀏覽器(IE8或更舊的版本)只支援1.5版的Javascript)這裡有一個腳本,既能透過偵測特徵來偵測JavaScript版本,它還能檢查特定的Javascript版本所支援的特性。
var JS_ver = [];N; prototype.toFixed)?JS_ver.push("1.5"):false;
([].indexOf && [].forEach)?JS_ver.push("1.6"):false;
((function() {try {[a,b] = [0,1];return true;}catch(ex) {return false;}})())?JS_ver.push("1.7"):false;
([ ].reduce && [].reduceRight && JSON)?JS_ver.push("1.8"):false;
("".trimLeft)?JS_ver.push("1.8.1"):false;
JS_ver .supports = function()
{
if (arguments[0])
return (!!~this.join().indexOf(arguments[0] ",") ","); else
return (this[this.length-1]);
}
alert("Latest Javascript version supported: " JS_ver..ports());; 1.7 : " JS_ver.supports("1.7"));
5.使用window.name進行簡單會話處理
這是我真的喜歡的東西。您可以為指定字串為window.name屬性的值,直到您關閉該標籤或視窗。雖然我沒有提供任何腳本,但我強烈建議您如充分利用這個方法。舉例來說,在建立網站或應用程式的時候,在調試和測試模式之間切換是非常有用的。
6.判斷屬性是否存在
這個問題包含兩個方面,既有檢查屬性時候存在,還要取得屬性的類型。但我們總是忽略了這些小事:
複製程式碼 程式碼如下:
// BAD: This will cause an error in code when foo is undefined
if (foo) {
doSomething();
}
doSomething();
}
/ GOODn:' t cause any errors. However, even when
// foo is set to NULL or false, the condition validates as true
if (typeof foo != "undefined") {
〜、thing); >}
// BETTER: This doesn't cause any errors and in addition
// values NULL or false won't validate as true
if (window.foo) {}
但是,有的情況下,我們有更深的結構和需要更合適的檢查的時候,可以這樣:
// UGLY: we have to proof existence of every
// object before we can be sure propertyd sure properist> window.oFoo && oFoo.oBar && oFoo.oBar.baz) {
doSomething();
}
7.給函數傳遞參數
7.給函數傳遞參數
當函數既有必選又有可選參數的時候,我們可能是這樣做的:程式碼如下:
function doSomething(arg0, arg1, arg2, arg3, arg4) {
...
}
doSomething('', 'foo', 5, [], false);
而傳遞一個物件總是比傳遞一堆的參數更方便:
複製程式碼
代碼如下:
function doSomething() {
// Leaves the function if nothing is passed
if (!arguments[0]) { var oArgs = arguments[0]
arg0 = oArgs.arg0 || "",
arg1 = oArgs.arg1 🎜> arg1 = o2.arg1 🎜> arg3 = oArgs.arg3 || [],
arg4 = oArgs.arg4 || false;
}
doSomething({
㠀 : arg4 : false
});
這只是一個傳遞物件的一個很簡單的例子,例如,我們也可以宣告一個對象,變數名稱為Key,預設值作為Value。
8.使用document.createDocumentFragment()
您可能需要動態地追加多個元素到文件中。然而,直接將它們插入文件中會導致這個文檔每次都需要重新佈局一個,相反的,你應該使用文檔碎片,建成後只追加一次:
複製程式碼 程式碼如下:function createList() {
var aLI = ["first item", "second item", "thihord item", "fourth item", "fith item"]; // Creates the fragment
var oFrag = document.createDocumentFragment(); // Removes the first item from array and appends it
// as a text node to LI 松ift()) );
oFrag.appendChild(oLI);
}
document.getElementById('myUL').appendChild(oFF);
9.為replace()方法傳遞一個函數
有的時候你想替換字串的某個部分為其它的值,最好的方法就是給String.replace()傳遞一個獨立的函數。以下是一個簡單範例:
複製程式碼
程式碼如下:
return match;});
// string sFlop now contains:
// "Flop: [Ace of Hearts] [King of Spades] [Seven of Clubs]"
10.循環中標籤的使用
有的時候,循環中又嵌套了循環,你可能想在循環中退出,則可以用標籤:
outerloop:
for (var iI=0;iI if (somethingIsTrue()) {
/ Breaks the outer loop iteration
break outerloop;
}
innerloop:
for (var iA=0;iA // Breaks the inner loop iteration
break innerloop;
}
}
}
}
}