我正在尝试使用类似输入的值更新隐藏字段的值。我错过了一些因为它不起作用的东西。这是代码。
function livecntupdate() {
$('input').each(function(){
$(this).val($('CNT' + this.id).val())
});
}
非凡
答案 0 :(得分:1)
您缺少#
所需的哈希id
:
function livecntupdate() {
$('input').each(function(){
$(this).val($('#CNT' + this.id).val())
});
}