为了账号安全,请及时绑定邮箱和手机立即绑定

大神们这段代码到底是怎么运算的???

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>style样式</title>
<script type="text/javascript">
var numresult;
var str;
function onclicknum(nums) {
   str = document.getElementById("nummessege");
   str.value = str.value + nums;
}
</script>
</head>
<body>
<input type="text" id="nummessege"  />
<input type="button" value="4" id="4" onclick="onclicknum(4)">
</body>
</html>

str = document.getElementById("nummessege");
   str.value = str.value + nums;    这段代码有点不理解

正在回答

1 回答

str.value就是你文本框中输入的数

整个代码就是给文本框输入的数加上一个给定的num值,代码中num值固定是4

但是你给的代码只是链接两个字符而已,并不是做数值运算,如果需要数值运算的话,函数代码应该改成

str = document.getElementById("nummessege");

   str.value = parseInt(str.value) + parseInt(nums);

其中parseInt的作用是强制把里面的参数转换成Int整型,这样才能进行数值运算

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

大神们这段代码到底是怎么运算的???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信