https://github.com/daveloyall/quickjsonformatter/blob/master/index.html不明白window.TAB引用
想學習上面的代碼並有太多的事情,我不明白。
function SetTab(){
var select = $id("TabSize");
window.TAB = MultiplyString(parseInt(select.options[select.selectedIndex].value), window.SINGLE_TAB);
}
對於上面的例子,是window.TAB用戶創建全局對象?(或用戶創建的全局窗口的方法是什麼?只是不知道這是什麼東西做的)
是的,在JS(基於瀏覽器的JS,至少)中,'window'是全局對象。所以'TAB'成爲一個全局變量和'window'屬性。 – Petah