给表单所有元素赋值
程序员文章站
2023-12-21 15:49:34
...
$('#memo input,select').each(function(){
var name = this.name;
$(this).attr('value', row[name]);
});