How can I check the variable whether it exists or not
This question already has an answer here:
您可以使用typeof运算符。
if (typeof a === 'undefined') {
// variable is undefined
}
链接地址: http://www.djcxy.com/p/22644.html
上一篇: 识别未定义的对象名称/值对
下一篇: 我如何检查变量是否存在