<html>
<head>
<script type="text/javascript">
function sum() {
i = 10;
j = 10;
result = i + j;
return result;
}
</script>
</head>
<body>
First name: <input type="text" name="fname" value="sum()"><br>
</body>
</html>
我是 javascript 新手,我想在我的输入文本框中获取数值。这里我正在做 i 和 j 的总和,并希望结果直接显示在输入框中,而不使用提交按钮。