0

在 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字段。如果值为#paypriceis >0,则侧重于销售排名文本区域,而不是版本。我尝试设置超时,但效果不如$("#isbn).focus();,也无效。我将其更改$(':text')[0].focus();为查看是否可行,但它仍然转到第一个按钮。我在这里做错了什么?我该如何纠正它以使其正常工作?

4

3 回答 3

1

你有没有尝试过

if(parseFloat($('#payPrice').val()) <= 0 ) {
...
}

如果 parseFloat 没有区别,试试这个:

if($('#payPrice').val()<=0){
   $("input[name='isbn']").focus(); 
}else{
   $("input[name='edition']").focus(); 
}

否则你可以看到那个例子:

function sampledFunction()
{
 window.setTimeout(function ()
 {
  $('#mobileno').focus();
 }, 0);
 return false;
}

在这里阅读

于 2012-09-11T13:11:22.033 回答
1

我建议使用更好的选择器:

喜欢$('[type=text]')$('input:text')

请参阅:jQuery 文本选择器

于 2012-09-11T13:21:29.217 回答
0

这是最终结果,感谢 JackTurky 为我指明了正确的方向。

    //focus on either isbn or edition
        setTimeout(function() {
            if($('#payPrice').val() <= 0 ) {
                    $("#isbn").focus();
                } else {
                    $("#edition").focus();
                }
                }, 10);
于 2012-09-11T16:25:14.277 回答