我正在尝试使输入的数字自动移动到小数点后 2 位 - 但经过几次尝试后我无法做到这一点 - 和想法?:
html
<tr>
<td colspan="2" class="null"></td>
<td class="label">Money Accounted For</td>
<td class="field"><input type="text" name="moneyAccountedFor" id="moneyAccountedFor" tabindex="7" /></td>
</tr>
jQuery
$("#moneyAccountedFor").blur(function() {
$(this).val($(this).value.toFixed(2));
});
编辑: 为了更仔细地查看我的问题 - 我创建了一个小提琴:http: //jsfiddle.net/drewwyatt/AEWHs/