Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
var x = "card"; document.nick.x.value = card_dealt;
不太清楚在这里做什么。我用谷歌搜索了一堆并想出了 [] 但它们没有用,或者我没有正确使用它们。
使用方括号。
var x = "card"; document.nick[x].value = card_dealt;
这使您可以使用评估表达式作为属性名称。