在.net aspx-Page中,我有一个带有文本框的网格视图。有默认价格和其他价格。我想实现以下目标:当默认价格的字段失去焦点时,此价格将写入该行的所有其他价格字段。此外,选择行的下一个价格字段(就像使用选项卡按钮时一样)。
我的jQuery代码(我使用css-classes来获取文本框)
$('.defaultPrice').blur(function() {
var value = $(this).val();
if (value != "") {
$(this).closest('tr').find('.price').val(value);
}
$(this).closest('tr').find('.price').select();
});
如果没有代码的最后一行,则不会选择下一个字段。 该脚本不正确,因为未选择下一个字段(但最后一个)。
答案 0 :(得分:0)
你在找这个吗?
$('.defaultPrice').blur(function() {
var value = $(this).val();
if (value != "") {
$(this).closest('tr').find('.price').val(value);
}
$(this).closest('td').next().find('.price').select();
});