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