获取样式

获取/设置样式

obj.style(name,[value])实质style里面是个json

obj.style({width:200,height:300px})



    d3
    
    
    
    


1111

2222

注意json中key/value要打引号

window.onload=()=>{
            alert(d3.selectAll('p').style('width')) //100px
           d3.selectAll('p').style({
            'background':'blue',
            'width':'500px'
           })

        }

你可能感兴趣的:(获取样式)