我想根据条件选择文本字段,例如:
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() {
});
但是我无法进入它。请建议如何进入选择。
答案 0 :(得分:16)
$('input[name="' + name + '[]"]').each(function() {
$(this).val('Some value');
});
答案 1 :(得分:2)
不需要每个循环,你可以这样做:
$('input[name="field_name[]"]').val('Some value');
希望这有帮助。