我尝试使用D3创建文本字段而不使用html。
以下是使用html创建文本字段的一些示例: http://bl.ocks.org/eesur/9910343 http://bl.ocks.org/d3noob/10633704 但这些并不是我想要的。
我可以使用此代码创建复选框
d3.select(#left).selectAll("div")
.data(graph.nodes)
.enter()
.append("div")
.append("label")
.each(function(d){
d3.select(this).append("input")
.attr("type","checkbox")
.property("checked", false)
d3.select(this).append("text")
.text(function (d) {
return d.num;
});
});
有没有办法可以使用类似于我用来创建复选框的代码创建文本字段?
谢谢。