我有小问题。我的脚本有很多数组。
我的上一个函数返回一个“selected”变量,它是我的setBreakValues
函数的一个参数,它也是我想要访问我函数中的值的数组的名称。让我说我从其他函数返回“test”并将其传递给setBreakValues
我想访问测试数组中的test[0]
元素,但它返回参数的第一个字母。我只想将它用作数组的名称。这可能吗?
这是破碎的代码:
function setBreakValues(chosen){
console.log(chosen[0][1])
$("#totalTime").val($("#firstTime").val())
var select = document.getElementById('breakValue');
for(var i = 0; i < chosen.length; i++) {
var option = document.createElement('option');
option.innerHTML = chosen[i][0];
option.value = chosen[i][0];
select.appendChild(option);
}
$("#breakValue").change(function(){
$("#secondPressure").val(chosen[0][1])
})
}