我有带有值的复选框,我想计算它们的值并在点击时显示在警报框中。
我尝试了过去 2 小时,但我不明白如何使它成为可能
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$('button').click(function(){
$('count').each(function(){
})
})
})
</script>
</head>
<body>
<div>
<input type="checkbox" name="count" value="5" />
<span>5</span>
</div>
<div>
<input type="checkbox" name="count" value="3" />
<span>3</span>
</div>
<div>
<input type="checkbox" name="count" value="10" />
<span>10</span>
</div>
<input type="button" value="calculate" />
</body>