一般在计算的时候 要求计算结果随着我们输入的数据变化而变化 这个时候 我们可用用keyup 函数 而不需要用onchange 、onblur 的函数
<body>
<input type="text"/>+
<input type="text" value="11"/>=
<input type="text"/>
<div></div>
<script>
$("input:first").keyup(function () {
var value = $(this).val();
$("input:last").val(11+parseInt(value));
});
</script>
</body>