gpt4 book ai didi

javascript - 检查 JavaScript 变量是否为 null?

转载 作者:行者123 更新时间:2023-11-28 13:31:42 24 4
gpt4 key购买 nike

我使用以下代码行来检查 JS 变量“userName”是否为 null。但我总是收到警报“非空”

请检查我的onready方法:

$("document").ready(function (){
var userName = "";
if (userName == undefined || userName == null) {
alert('empty');
} else {
alert('not empty');
var div = document.getElementById('title b');
div.innerHTML = div.innerHTML + ',';
}
});

最佳答案

您需要typeof关键字来检查它的类型。 !userName 将处理其余部分,例如 null 或空值。

if ( typeof userName === 'undefined' || !userName ) {
alert('empty');
}

关于javascript - 检查 JavaScript 变量是否为 null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24265328/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com