这更像是一个编码练习题,我想在html表单的javascript对象/数组中设置变量。
我目前正在使用onkeyup并将值传递给set函数。例如:(沿着)
onclick="item.setVar('retouch', this.value); return false;"
setVar: function(variable, value){
this[variable] = parseInt(value);
}
有更好的方法可以做到这一点,还是归结为个人偏好。
感谢大家的帮助:)