2011-02-15 77 views
8

我想根據病情來選擇文本字段,例如:選擇輸入字段名作爲數組字段

if only text field name = sname[] than only put value in it. 

爲此,我使用

<input type="text" name="sname[]" /> 

where name = sname; 

//For each name type field in extra add contact module if that i visible. 
    $('input[name=' + name + '[]]').each(function() { 

}); 

但我不能進入它的內部。請建議如何進入選擇。

回答

16
$('input[name="' + name + '[]"]').each(function() { 
    $(this).val('Some value'); 
}); 
+0

jsFiddle:http://jsfiddle.net/M2Jnx/ – stealthyninja 2011-02-15 06:08:10

2

無需每次循環,你可以做到這一點,如:

$('input[name="field_name[]"]').val('Some value'); 

希望這有助於。