gpt4 book ai didi

javascript - Typeof === 'undefined' 问题

转载 作者:行者123 更新时间:2023-11-28 04:11:07 25 4
gpt4 key购买 nike

这里的新手尝试处理这个函数,如果 href 的内容为空,它应该在 console.log 中显示“我未定义”。我很感激任何帮助,因为我非常困...... :-(

$(document).ready(function () {
$('.facebook').each(function () {
var facebook = $(this).attr('href')
if (typeof facebook === "undefined") {
console.log("I am undefined");
}
});
});

最佳答案

它不会是未定义的,我想你可以使用:-

if (!facebook) {
console.log("I am undefined");
}

它将处理任何虚假值,如 nullundefined""

关于javascript - Typeof === 'undefined' 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28869532/

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