我需要将 JQuery 中的值放在以下范围内:
<td>Cholesterol</td>
<td>
<input type="text" name="txt_cholesterol" id="txt_cholesterol" class="info"/>
<span class="result"></span>
</td>
<td>
<span class="low">116</span>-<span class="high">254</span>
</td>
jQuery 不工作:
$(".info").keyup(function(){
var a = $(this).val();
var low = $(this).closest('td').next().find('.low').html();
var high =$(this).closest('td').next().find('.high').html();
if (a < parseInt(low))
{
$(this).closest('span').html('L');
}
if (a > parseInt(high))
{
$(this).closest('td').next().find('.result').html('H');
}
});