gpt4 book ai didi

javascript - 我的提示不会返回字符串,它只返回 NaN

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

我对此很陌生,无法理解发生了什么。

我的代码如下:

let p = prompt("Enter your name, please", "");
let o = prompt("Enter your age, please.", "");
let fname = parseInt(p);
let age = parseInt(o);
let year = (2018 - age);
document.getElementById("p1");
p1.innerHTML = fname + ", you were born in " + year;

当在浏览器上输入所有内容时,我最终会看到以下内容:

“NaN,你是1990年出生的”

数字部分有效,但字符串无效。

最佳答案

您正在名字字段上运行 parseInt()。只需删除该 parseInt 调用,因为您的名字不是整数!

关于javascript - 我的提示不会返回字符串,它只返回 NaN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52375417/

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