我如何检查变量是否存在
这个问题在这里已经有了答案:
您可以使用typeof运算符。
if (typeof a === 'undefined') {
// variable is undefined
}
链接地址: http://www.djcxy.com/p/22643.html
上一篇: How can I check the variable whether it exists or not
下一篇: What is the full form of an expressionless statement in javascript?