function window(){ //函數名為window。網頁打不開 window.open("","_blank","width=600,height=400"); }
function test(){ //函數名為test。網頁打得開 window.open("","_blank","width=600,height=400"); }
為什麼當函數名是 window 時,網頁就打不開了?
window不能用作函数名 window为JS关键字
函数命名要避免关键字,可以在后面多加个字母来避免,比如windower