如何從下拉菜單中選擇與所選名稱對應的目標值。 I have a dataset在具有以下結構層次結構:如何從內部json數組中獲取目標值
世界=>孩子:大陸有=>兒童國家
現在,我想個別國家的值時,它的名字是從下拉列表中選擇。
當我嘗試我的代碼返回錯誤
遺漏的類型錯誤:無法讀取空
這一點我想,我不能得到我所需要的值手段的特性「目標」。 的js小提琴:
http://jsfiddle.net/9tnmwdyv/3/
我的代碼:
function checkIt(error, root){
if (error) throw error;
var partition = d3.layout.partition()
.value(function(d) { return d.Total; });
var dropDown = d3.select("#dropdown_container")
.append("select")
.attr("class", "selection")
.attr("name", "country-list");
var options = dropDown.selectAll("option")
.data(partition.nodes(root))
.enter()
.append("option");
options.text(function (d) { var dropdownValues = d.name.replace(/[_-]/g, " ");
return dropdownValues.replace(/[_-]/g, " ") })
.attr("value", function (d) { var dropdownValues = d.name;
return dropdownValues});
function changePie() {
//get the data value and index from the event
var selectedValue = d3.event.target;
var selectedIndex = d3.event.target.selectedIndex;
//alert("You selected the option at index " + selectedIndex + ", with value attribute "+ selectedValue);
var selectedDOMElement =
d3.event.target.children[selectedIndex];
var selection = d3.select(selectedDOMElement);
//Output selected country with all its values
var uniqueData = data[selectedIndex];
console.log(uniqueData)
}
changePie();
};
d3.json("https://gist.githubusercontent.com/heenaI/cbbc5c5f49994f174376/raw/55c672bbca7991442f1209cfbbb6ded45d5e8c8e/data.json", checkIt);
你是正確的,但執行console.log(此值)給國家,而我想要的東西的名稱是從對應的數據集中的數據到選定國家 – Imo
更新我的答案以獲取所選選項的數據。 – 11thdimension