我的应用中有一个项目列表,上面有单选按钮。当我更改单选按钮上的设置时,我想更新页面底部的运行总计。如何设置运行总计?
问问题
1440 次
1 回答
0
这有一些缺陷,但它应该让你开始:
<html>
<head>
<script>
var total = 0;
function count(input) {
if(input.checked) {
total++;
}
document.getElementById('total').innerHTML = total;
}
</script>
</head>
<body>
<input type="radio" id="radio1" onclick="count(this);"/>Radio 1
<span id="total">0</span>
</body>
</html>
于 2013-07-25T18:56:05.843 回答