gpt4 book ai didi

具有 2 个变量的 Javascript 计算

转载 作者:太空狗 更新时间:2023-10-29 15:13:39 25 4
gpt4 key购买 nike

我的表格计算有问题。

这是我的 javascript:

function kembali()

var total=document.getElementById('total1').value;
var bayar=document.getElementById('bayar1').value;
document.getElementById('kembalian1').value=bayar*total;

这是我的html:

<form><table><tr>
<td>Total</td>
<td>:</td>
<td><input type="text" name="total" id="total1" value="50000"/></td>
</tr>
<tr>
<td>Bayar</td>
<td>:</td>
<td><input type="text" name="bayar" id="bayar1" onkeyup="kembali()" autocomplete="off"/></td>
</tr>
<tr>
<td>Kembalian</td>
<td>:</td>
<td><input type="text" name="kembalian" id="kembalian1"/></td>
</tr></table></form>

我将此代码用于 jsfiddle.net,但没有成功。如何解决这个问题?你能帮助我吗?谢谢。

Here's the example

最佳答案

您需要选择选项onLoadNo Wrap in head从下拉菜单 Frameworks & Extensions .

更新FIDDLE

jsfiddle documentation

第二个下拉菜单是关于 Code Wrap默认设置为 onLoad .

有4个选项可供选择:

加载时:

包装代码,使其在 onLoad 窗口事件中运行

onDomReady:

包装代码,使其在 onDomReady 窗口事件中运行

不换行 - 在 <head> 中:

不要包裹 JavaScript 代码,将其放在 <head> 中节

不换行 - 在 <body> 中:

不要包裹 JavaScript 代码,将其放在 <body> 中节

关于具有 2 个变量的 Javascript 计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31375315/

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