您好,我将在其中操作一些 JSON 属性,以使用 ui 框架中的一些 jquery 滑块加载其他一些 JSON 数据,我想知道如何访问 JSON 数组中的属性并操作它们的值。
d3.json("basbeball.json", function(json) {
//properties here??
"year": '2002', //slider will modify this year
data = json;
counties.selectAll("path")
.attr("class", quantize);
//start of slider for map
$( "#slider" ).slider({
range: "min",
value: 0,
min: 1910,
max: 2012,
slide: function( event, ui ) {
$( "#sliderVal" ).val(ui.value );
}
});
$( "#sliderVal" ).val($( "#slider" ).slider( "value" ) );
});