gpt4 book ai didi

JavaScript 没有将结果值设置到

的 innerHTML 中

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

这是我的 HTML 代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
Calculator
</title>
<script src="JScript1.js" type="text/javascript"></script>
</head>
<body>
&nbsp &nbsp &nbsp &nbsp
<h1> Calculator </h1>
<form>
<input id="txt1" type="text" />
&nbsp &nbsp &nbsp

<input id="rad1" type="radio" value="add" />add &nbsp
<input id="rad2" type="radio" value="mul" />mul &nbsp
<input id="rad3" type="radio" value="div" />div &nbsp
<input id="rad4" type="radio" value="sub" />sub &nbsp

&nbsp &nbsp &nbsp
<input id="txt2" type="text" />
<button id="mButton" value="Calculate" onclick="calculate()">Calculate!!</button>
</form>
<p id="resultP">Result will be displayed here:</p>
</body>
</html>

这是 JavaScript:

function calculate()
{
var first = document.getElementById('txt1').value;
var sec = document.getElementById('txt2').value;
var result;
if (document.getElementById('rad1').checked) {
result = parseInt(first) + parseInt(sec);
}
else if (document.getElementById('rad2').checked) {
result = first * sec;
}
else if (document.getElementById('rad3').checked) {
result = first / sec;
}
else if (document.getElementById('rad4').checked) {
result = first - sec;
}
alert(result);
var resultP = document.getElementById('resultP');
resultP.innerHTML = result;
};

Upto alert(result); 工作正常。但它没有在 p 标签中设置结果。另外,当我按“计算”时,整个页面都会闪烁,并且两个输入字段中输入的值都消失了。

而且当我按计算时,地址栏上的链接更改为 /htmlCode.html?arithematic2=mul

最佳答案

页面因重新加载而闪烁。默认<button>在表格中输入 submit 。您的 JavaScript 代码不会阻止提交表单,因此在执行 calculate 后它重定向到同一页面,将所有表单数据添加到 URL。

您应该将按钮定义为

<button type="button" onclick="calculate()">Calculate</button>

或附上calculate用作表单的submit事件处理程序并阻止提交,例如使用纯 HTML 属性:

<form onsubmit="calculate(); return false;">

关于JavaScript 没有将结果值设置到 <p> 的 innerHTML 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29330786/

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