Asp.net Gridview Texbox专注于以下文本框Jquery

时间:2018-12-13 23:45:57

标签: jquery asp.net gridview itemtemplate

我正在尝试着眼于下面的文本框(在我的GridView中), Related Image

这是我的代码

$(document).ready(function () {

    $('#grdArqueoCaja input[type=text]').keypress(function (e) {
        if (e.keyCode == 13) {
            var cantidad = parseInt($(this).val());
            var denom = parseInt($(this).closest("tr").find("input[type=hidden][id*=ValorDenominacion]").val());
            var total = parseInt(cantidad * denom);

           $(this).closest('td'). next('td').find('input[type=text]').val(total);
            
            $(this).closest('tr').next('tr').find('input[type=text]').focus()

        } else {
            return;
        }
    });
});

但是它不起作用,我将注意力集中在下一个texbox上

请帮助!

0 个答案:

没有答案