在 jquery 中运行计算后,我试图将焦点放在我的 isbn 文本框或版本文本框中,但它会转到页面上的第一个按钮或销售排名字段。
我的html是:
<td><label>ISBN</label></td>
<td><input type="text" id="isbn" name="isbn" /></td>
<td></td>
<td rowspan=7><a id="detailURL" href="#" target="_blank"><img id="bookCover" src="../images/imgNotFound.gif" height="200px" /></a></td>
<td rowspan=7><input type="button" id="isIE" name="isIE" value="IE Price Reduction" />
<br/><br/><input type="button" id="isAIE" name="isAIE" value="AIE Price Reduction" />
<br/><br/><input type="button" id="isModHighlight" name="isModHighlight" value="Moderate Highlighting" />
<br/><br/><input type="button" id="isHeavHighlight" name="isHeavHighlight" value="Heavy Highlighting" />
<br/><br/><input type="button" id="isMissingSupply" name="isMissingSupply" value="Missing Supply" />
<br /><br/><input type="button" id="waterDamage" name="waterDamage" value="Water Damage / Poor Cond." />
</td>
<td rowspan=7>
<!-- SUPPLY CHECK TABLE -->
<table id="supply" summary="Check Supply" width="10%" border="1" align="right">
<caption><h3>Check Supply!</h3></caption>
<thead>
<tr>
<th scope="col" class="rounded-isbn">Supply:</th>
<!--<th scope="col" class="rounded-isbn">Who Requires:</th>-->
</tr>
</thead>
<tbody>
</tbody>
</table>
</td>
</tr>
<tr>
<td><label for="quantity" class="label">Quantity</label></td>
<td><input type="text" id="quantity" name="quantity" /></td>
<td></td>
</tr>
<tr>
<td><label for="payPrice" class="label">Price to Pay</label></td>
<td><input type="text" id="payPrice" name="payPrice"/></td>
<td></td>
</tr>
<tr>
<td><label>Edition</label></td>
<td><input type="text" id="edition" name="edition" readonly="readonly"/></td>
<td></td>
</tr>
<tr>
<td><label>Title</label></td>
<td><input type="text" id="title" name="title" /></td>
<td></td>
</tr>
<tr>
<td><label>Sales Rank</label></td>
<td><input type="text" id="salesRank" name="salesRank" readonly="readonly" /></td>
<td></td>
</tr>
<tr>
<td></td><td><input type="button" id="buy" value="Buy" /></td><td></td>
</table>
</form>
有问题的jquery是:
if($('#payPrice').val() <= 0 ) {
$(':text')[0].focus();
} else {
$("#edition").focus();
}
当值为 时#payPrice
,<=0
默认为第一个按钮id="isIE"
而不是isbn
字段。如果值为#payprice
is >0
,则侧重于销售排名文本区域,而不是版本。我尝试设置超时,但效果不如$("#isbn).focus();
,也无效。我将其更改$(':text')[0].focus();
为查看是否可行,但它仍然转到第一个按钮。我在这里做错了什么?我该如何纠正它以使其正常工作?