gpt4 book ai didi

javascript - 如何在Javascript中添加用户输入的数字

转载 作者:行者123 更新时间:2023-12-03 12:43:25 25 4
gpt4 key购买 nike

以下是我为了尝试将用户输入的两个数字相加而执行的 JavaScript,但得到的结果是“NaN”:

<HTML>
<HEAD>
<TITLE>JavaScript-Functions</TITLE>
</HEAD>

<BODY>

<H1>JavaScript-Functions</H1>

<P>This function will add two numbers.</P>

<script type="text/JavaScript">

<!-- This is a math function -->

var x = prompt("Please enter the first number: ");
var y = prompt("Please enter the second number: ");

function addTwo(x, y)
{
var xNum;
xNum = parseInt(x);
var yNum;
yNum = parseInt(y);
return xNum + yNum;
}

document.write(addTwo(x, y));

</script>
</BODY>
</HTML>

最佳答案

这里一切看起来都很好,除了 html 注释

<!-- This is a math function -->

在脚本标签中。

关于javascript - 如何在Javascript中添加用户输入的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23440689/

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