我想在 d3 中创建几个按钮。为了有一个更清晰的代码,我想将他们的名字添加到一个数组中。
我有以下代码,但它不起作用:
var buttonNames = ["button 1", "button 2", "button 3", "button 4"]
d3.select("body").selectAll("input").data(buttonNames).enter().append("input").attr("type","button").attr("class","button").attr("value", function d(){return d;} )
提前感谢您的回复。