我尝试使用下拉菜单在所有字段上设置默认值。 例如:
Let consider Drop down there is of three options like theme1, theme2 and theme
3我5 input fields.
在five input fields
有id
。
如果我选择theme1
,它会将值初始化为相应的5
输入字段。(我不确定是否有办法将值分配给数组)
Theme1 contatin
input1 => "hi";
input2 => "how";
input3 =>"are";
input4 =>"you";
如果我在下拉列表中选择了theme1,那么添加我在数组中定义的值(如果可行的话) THEME2 contatin
input1 => "glad";
input2 => "to";
input3 =>"meet";
input4 =>"you";
如果我选择theme2
,它会将值初始化为相应的5
输入字段。(此值与theme1不同)
$('select').on('change', function() {
$("select option:selected").each(function () {
$('#price').val('$' + $(this).attr('value'));
});
});
现在我提到有价值。但有没有办法调用函数而不是 任何人都可以建议我使用数组将初始化值设置为一个选项(theme1)。 这是我的 fiddle
答案 0 :(得分:1)
试试这个
$('select').on('change', function () {
var data = $(this).val().split(' ');
var i = 0;
$('input').each(function () {
$(this).val(data[i]);
i++;
});
});
<select>
<option>Select an item</option>
<option value="Hello how are you">Item 1</option>
<option value="Glad to meet you">Item 2</option>
<option value="3">Item 3</option>
</select>
<input type="text" id="price">
<input type="text" id="another_price">
<input type="text">
<input type="text">