gpt4 book ai didi

javascript - 无法读取 null 的属性 'length' (javascript)

转载 作者:可可西里 更新时间:2023-11-01 01:27:07 25 4
gpt4 key购买 nike

在尝试调试时,我收到此行的“长度”空错误。它是按照书上的说明写的,所以我不明白为什么它会给我错误?谢谢,=)

if (capital.length < 1) {

(这里是要求的完整代码。抱歉)

<script type="text/javascript">
var capital = window.prompt("What is the capital of Missouri?","")

if (capital.length < 1) {
document.getElementById("firstdiv").innerHTML="Sorry you don't feel like playing.<br /> The Capital of Missouri is Jefferson City.";
}
else {
if (!window.confirm("Is that your final answer?")){ return true;

document.getElementById("firstdiv").innerHTML = "The capital of Missouri is: <bold>" + capital + "</bold>, so says you.";
}
else{
return false;
}
}
</script>

最佳答案

正确的测试是:

if (capital != null && capital.length < 1) {

当您执行长度检查时,这可确保 capital 始终 非空。

此外,正如评论所暗示的那样,capitalnull 因为您从未对其进行初始化。

关于javascript - 无法读取 null 的属性 'length' (javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15731559/

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