function test(art) {
document.formular.eval(art+"_name").value = "Test";
}
这会产生eval is not a function error
。
我试过document.formular.[art+'_name'].value = "Test";
哪个也不行。
答案 0 :(得分:4)
尝试:
document.formular[art+'_name'].value = "Test";