JS如果不是一个变量
这个问题在这里已经有了答案:
如果该参数未传递给该函数,则该参数undefined
。
function foo( x, y, opt ){
if( typeof opt === 'undefined' ){
opt = 1;
}
...
}
在JavaScript中,你可以添加像这样的默认值:
function foo(x,y,opt){
if(typeof(opt)==='undefined') opt = 1;
//your code
}
链接地址: http://www.djcxy.com/p/17281.html
上一篇: JS if not a variable