gpt4 book ai didi

javascript - 无法在 html 文本框中添加两个乘法结果

转载 作者:行者123 更新时间:2023-12-02 16:59:39 24 4
gpt4 key购买 nike

先生我有 7 个文本框。第 2 个从用户处获取值,并在单击时在第 3 个文本框中显示乘法结果。第 4 和第 5 个文本框也获取值并在单击时在第 6 个文本框中显示乘法结果。现在将显示第 7 个文本框单击时的加法结果。第七个文本框采用第三个和第六个文本框的值。我的问题是我无法进行加法并且无法在 html 中的第 7 个文本框中显示结果,jscript.plz 帮助我......我附上了代码......

 <html>
<script>
function getText1(){
var in1=document.getElementById('in1').value;
var in2=document.getElementById('in2').value;


var tot1=parseInt(in1)*parseInt(in2);


document.getElementById('tot1').value=tot1;
}


function getText2(){


var in1=document.getElementById('in3').value;
var in2=document.getElementById('in4').value;

var tot2=parseInt(in1)*parseInt(in2);

document.getElementById('tot2').value=tot2;
}

function gt1(){

var in1=document.getElementById('tot1').value;
var in2=document.getElementById('tot2').value;

var gt1=parseInt(in1)+parseInt(in2);
document.getElementById('gt').value = gt1;



</script>

<form>
<input type="text"id="in1"/>
<input type="text" id="in2"/>
<input type="text" onclick="getText1()" id="tot1"/>
<br>
<input type="text"id="in3"/>
<input type="text" id="in4"/>
<input type="text" onclick="getText2()" id="tot2"/>
<br>
<input type="text" onclick="gt1()" id="gt1"/>

</form>
</html>

最佳答案

<html>
<script>
function getText1(){
var in1=document.getElementById('in1').value;
var in2=document.getElementById('in2').value;


var tot1=parseInt(in1)*parseInt(in2);


document.getElementById('tot1').value=tot1;
}


function getText2(){


var in1=document.getElementById('in3').value;
var in2=document.getElementById('in4').value;

var tot2=parseInt(in1)*parseInt(in2);

document.getElementById('tot2').value=tot2;
}

function gt(){

var in1=document.getElementById('tot1').value;
var in2=document.getElementById('tot2').value;

var gt1=parseInt(in1)+parseInt(in2);
document.getElementById('gt1').value = gt1;
}


</script>

<form>
<input type="text"id="in1"/>
<input type="text" id="in2"/>
<input type="text" onclick="getText1()" id="tot1"/>
<br>
<input type="text"id="in3"/>
<input type="text" id="in4"/>
<input type="text" onclick="getText2()" id="tot2"/>
<br>
<input type="text" onclick="gt()" id="gt1"/>

</form>
</html>

使用此代码即可正常工作。并与自己的代码进行比较。谢谢..

关于javascript - 无法在 html 文本框中添加两个乘法结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25864131/

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