<script>
$(function(){
$("input[name='btn']").click(function(){
var m = 0
var n = 0
$("input[name='a']").each(function(){
if($(this).val() != "" &&!isNaN($(this).val())){
m += parseInt($(this).val())
n++
}
})
if(n > 0)
alert(m / n)
else
alert("no data.")
})
})
</script> <body>
<form>
<input type="text" name="a" />
<input type="text" name="a" />
<input type="text" name="a" />
<input type="text" name="a" />
<input type="text" name="a" />
<input type="button" value="计算" name="btn"/>
</form>
</body>
需求:需要实现 1岁2月3天 这样的格式
方法:
此方法参考了: https://llyilo.iteye.com/blog/2271432