我需要对两个数字求和,但它给了我 NaN。我怎样才能让它工作?我已经尝试过 parseInt 但同样的事情。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<p id="num1">5</p>
<p id="num2">5</p>
<p id="res">1</p>
</body>
<script>
var num1 = document.getElementById("num1").value;
var num2 = document.getElementById("num2").value;
var res = num1 + num2;
document.getElementById("res").innerHTML = res;
</script>
</html>
ITMISS
开心每一天1111
小怪兽爱吃肉
相关分类