<!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; 这段代码有点不理解
str.value就是你文本框中输入的数
整个代码就是给文本框输入的数加上一个给定的num值,代码中num值固定是4
但是你给的代码只是链接两个字符而已,并不是做数值运算,如果需要数值运算的话,函数代码应该改成
str = document.getElementById("nummessege");
str.value = parseInt(str.value) + parseInt(nums);
其中parseInt的作用是强制把里面的参数转换成Int整型,这样才能进行数值运算