最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to append option into select combo box in d3 - Stack Overflow

programmeradmin1浏览0评论

I want to add the option into select bo box for example I have data like

[{ "NAME": "JONE", "ID": {"id1":123,"id2":124}}, { "NAME": "ANGEL", "ID": {"id1":125,"id2":127}}]` 

I want to append into options the "Name", I have done this so far:

dataset=d3.json("namees.json", function(data) {
    select = d3.select('body')
    .append('select')
    .attr('class','style');
    options = select
    .selectAll('option')


    .append('option')
            .text(data.forEach(function (d) {return d.Name}))



});

But it doesn't show the values in select option

I want to add the option into select bo box for example I have data like

[{ "NAME": "JONE", "ID": {"id1":123,"id2":124}}, { "NAME": "ANGEL", "ID": {"id1":125,"id2":127}}]` 

I want to append into options the "Name", I have done this so far:

dataset=d3.json("namees.json", function(data) {
    select = d3.select('body')
    .append('select')
    .attr('class','style');
    options = select
    .selectAll('option')


    .append('option')
            .text(data.forEach(function (d) {return d.Name}))



});

But it doesn't show the values in select option

Share Improve this question edited Mar 30, 2017 at 15:18 angel asked Mar 30, 2017 at 15:06 angelangel 331 silver badge6 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

You can do it like the following:

  1. Append the select element

     var dropDown = d3.select("body").append("select")
        .attr("name", "name-list");
    
  2. Append options to your select element based on data

    var options = dropDown.selectAll("option")
     .data(data)
     .enter()
     .append("option");
    
  3. Set the text and value for your options

    options.text(function(d) {
    return d.NAME;
     })
       .attr("value", function(d) {
    return d.NAME;
    });
    

JSFiddle - https://jsfiddle/x4a8ejk6/

Data

let data = [{
  NAME: "JONE",
   ID: {
   "id1": 123,
   "id2": 124
  }
  }, {
  NAME: "ANGEL",
    ID: {
     "id1": 125,
"id2": 127
      }
}];

Javascript

    let selector = d3.select("#selDataset");
    let sampleNames = data.map(ele =>ele.NAME);
            
    sampleNames.forEach((sample) => {
        selector
            .append("option")
            .text(sample)
            .property("value", sample);
    });

Html Code

                <div class="well">
                <h5>Dropdown Menu:</h5>
                <select id="selDataset" onchange="optionChanged(this.value)"></select>
                </div>

Explanation Js object items shouldnt be string. I f you try with above script you should be able to get dropdown menu with name.

发布评论

评论列表(0)

  1. 暂无评论