parseInt("10") => parseInt("010", 10) => 10 parseInt("010") => parseInt("010", 8) => 8 // 老版本的IE parseInt("0x10") => parseInt("010", 16) => 16 // 所有瀏覽器
[1, 2, 11, 123, 22].sort(function(a, b){ return a - b; });
!(function(doc, win) { var docEle = doc.documentElement, evt = "onorientationchange" in window ? "orientationchange" : "resize", fn = function() { var width = docEle.clientWidth; width && (docEle.style.fontSize = 20 * (width / 320) + "px"); }; win.addEventListener(evt, fn, false); doc.addEventListener("DOMContentLoaded", fn, false); }(document, window));