为什么函数名是window,网页就打不开了?
phpcn_u226
phpcn_u226 2016-12-19 09:53:59
0
2
1343
function window(){ //函数名为window。网页打不开
    window.open("","_blank","width=600,height=400");
}
function test(){ //函数名为test。网页打得开
    window.open("","_blank","width=600,height=400");
}
phpcn_u226
phpcn_u226

reply all(2)
数据分析师

Why can’t the web page be opened when the function name is window? -PHP Chinese website Q&A-Why can’t the web page be opened when the function name is window? -PHP Chinese website Q&A

Please watch and learn.

阿神

window不能用作函数名,window为JS关键字。

可以在后面多加个字母来避免,比如windower。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template