设置输入值克隆

时间:2011-12-30 01:05:34

标签: jquery clone keyup

这就是我的工作:3个用数学函数A / B = C克隆的文本字段。完美无缺。

问题:我想在A,B和C的“keyup”上设置文本字段值,以便该值实际读取键入文本字段的内容。 (参见代码注释中的“NOT RIGHT”)

http://jsfiddle.net/CzZxf/

$("#math-table input").live("keyup", function(){
   var id = this.id.match(/\d+/);
   $("#C"+id).val( Math.round (($("#A"+id).val() / $("#B"+id).val()) * 100) + "%"  );     
   $('#A1'+id).attr('value', ($('#A1'+id).val()));  // NOT RIGHT?
   $('#B1'+id).attr('value', ($('#B1'+id).val()));  // NOT RIGHT?
   $('#C1'+id).attr('value', ($('#C1'+id).val()));  // NOT RIGHT?
});

var uniqueIds = $("#math-table tr").length;
$("#math-table input[id^='B']").live("change", function(){
    var $thisRow = $(this).closest("tr"),
    $clone = $thisRow.clone(),             // Clone row
    $inputs = $clone.find("input").val("");// Reset values, return all inputs
    uniqueIds++; //Increment ID
    $inputs[0].id = "A" + uniqueIds;
    $inputs[1].id = "B" + uniqueIds;
    $inputs[2].id = "C" + uniqueIds;
    $thisRow.after($clone);                    
});

1 个答案:

答案 0 :(得分:2)

所以你想要填充文字值属性?你刚刚得到它:http://jsfiddle.net/CzZxf/1/(在CHROME中测试)