此问题在此处已有答案:
Accessing an object property with a dynamically-computed name(19个答案)
JavaScript object: access variable property by name as string [duplicate](3个答案)
how to access object property using variable [duplicate](2个答案)
get value with string key in javascript [duplicate](2个答案)
15天前就关门了。
我正在寻找一种方法来使用var opt = $("#select option:selected").val();
中的值,例如,option 1,并将其用作点标记法中const变量的一部分。
例如,我想使用opt
的值(它的值为option 1)来调用price.option1.savings
的值。我想用opt
替换选项',其中**{option 1}**是,结果应该是11。有办法吗?
const price = {
option1: {type: 'R-11', rValue: 11, savings: 0.20, pct: 0.12},
option2: {type: 'R-13', rValue: 13, savings: 0.22, pct: 0.12},
option3: {type: 'R-19', rValue: 19, savings: 0.24, pct: 0.12}
}
$(function() {
$("#select").blur(function() {
var opt = $("#select option:selected").val();
var result = price.${!opt}.savings;
$("#result").html(result);
});
});
个字符
const price = {
option1: {type: 'R-11', rValue: 11, savings: 0.20, pct: 0.12},
option2: {type: 'R-13', rValue: 13, savings: 0.22, pct: 0.12},
option3: {type: 'R-19', rValue: 19, savings: 0.24, pct: 0.12}
}
$(function() {
$("#select").blur(function() {
var opt = $("#select option:selected").val();
var result = price.${!opt}.savings;
$("#result").html(result);
});
});
型
1条答案
按热度按时间wr98u20j1#
你就得做这样的事
字符串
据我所知,这是使用变量值获取对象属性的唯一方法。你可以阅读更多关于它here