朋友。我正在使用2个表单选择字段来访问一些json数组。第一个选择选项是父数组,第二个选择是子数组。
我已经很好地登录了控制台,所以我想我可能只是在弄乱符号?但是我不确定。我是使用JSON的新手。
在下面的代码中,quoteValue出现未定义。
$('select#input_56_4').on('change', function () {
var loanValue = $('select#input_56_4 option:selected').val();
var stateValue = $('select#input_56_3 option:selected').val();
console.log(stateValue + ' ' + loanValue);
var quoteValue = data[stateValue].loanValue;
console.log('newValue = ' + quoteValue);
document.getElementById("testjson").innerHTML = quoteValue;
});
答案 0 :(得分:0)
我只需要不混用括号和点号。
var quoteValue = data[stateValue][loanValue];
应该是什么样子?