在d3 js中向div添加内容
gv_html='<span style="margin: 2px;background-color:#ffffff ;position:relative;height: 30px "> <input ?onkeyup=search() id="setext" style="height:27px " type="text" > <img style="position: ?absolute;right:2px ;padding-top:3px " id="myI" src="search.jpg" > </span>'
我想将此内容添加到
d3.select('body').append('div').add
以上内容中的div是可能的,帮帮我
答案 0 :(得分:0)
为此使用jQuery很不错。但是,这也可以http://jsfiddle.net/39rwneLL/1/
d3.select('div')
.append('span')
.style('margin', '2px')
.style('background-color', '#ffffff')
.style('position', 'relative')
.style('height', '30px');
d3.select('span')
.append('input')
.attr('id', 'setext')
.attr('attr', 'text')
.style('height', '27px');
d3.select('span')
.append('img')
.attr('id', 'myI')
.attr('src','http://upload.wikimedia.org/wikipedia/en/8/89/Construction_Icon_small.png')
.style('height', '20px')
.style('position', 'absolute')
.style('right', '2px')
.style('padding-top', '3px');
答案 1 :(得分:0)
这是通过点击
找到这个的解决方案d3.select('#set1').append("input").attr("id","setText").attr("type","text").style("height","27px").on("keyup",search);