简体   繁体   English

用于 HTML 中动态下拉列表的 JavaScript onchange 事件

[英]JavaScript onchange event for dynamic dropdown in HTML

I am not sure if I am wording this correctly.我不确定我的措辞是否正确。 I have a dropdown menu, that when an option is selected, the second dropdown pops in and has options for the selected value.我有一个下拉菜单,即选择一个选项时,第二个下拉流程将弹出并具有所选值的选项。 This all works great, but now I am trying to give a button to add more dropdowns in JavaScript.这一切都很好,但现在我正在尝试提供一个按钮来在 JavaScript 中添加更多下拉菜单。 The first works, but I cannot get the second value to show.第一个有效,但我无法显示第二个值。

HTML code: HTML代码:

<table class="table-container">
     <tbody><tr><td>
        <select class="custom-select" id="mediaSel" name="mediaSel" onchange="dropDownSelect(this.id, 'mediaSel2')">
        <option value="">--Select--</option>
        <option value="Illustration" name="Illustration">Illustration</option>
        <option value="GraphicDesign" name="GraphicDesign">Graphic Design</option>
        <option value="MotionGraphics" name="MotionGraphics">Motion Graphics</option>
        <option value="WebDesign" name="WebDesign">Web Design</option>
        </select>
             </td><td>
        <select class="custom-select" id="mediaSel2" name="mediaSel2"></select>
             </td><td class="buttonRow">
        <div id="addRow" class="addButton" onclick="addSelection()"><span class="plus"></span></div>
    </td></tr></tbody>
 </table>

So from here I was able to add the second dropdown when the onchange event has been fired.所以从这里开始,当 onchange 事件被触发时,我能够添加第二个下拉列表。

JS code: JS代码:

function dropDownSelect(s1,s2) {
    var s1 = document.getElementById(s1);
    var s2 = document.getElementById(s2);
    var hideSel = document.getElementById("mediaSel2");
    s2.innerHTML = "";

    if(s1.value == "Illustration") {
       var optionArray = ["Select|--select--","ChildrensBooks|Childrens Book Design","FanArt|Fan Art","WallArt|Wall Art"];
    }
     else if(s1.value == "GraphicDesign") {
       var optionArray = ["Select|--select--","Logo|Logo","BusinessCards|Business Cards","Flyers|Flyers","Billboards|Billboards","MagazineAds|Magazine Ads","CatalogeDesign|Cataloge Design","NewsPaperAds|Newspaper Ads"];
    }
    else if(s1.value == "MotionGraphics") {
       var optionArray = ["Select|--select--","LogoAnimation|Logo Animation","Explainers|Explainer Videos","ShortFilms|Short Film Animation","CharacterDesign|Character Design","ProductDesign|Product Design","Animation|Animation"];
    }
    else if(s1.value == "WebDesign") {
       var optionArray = ["Websites|Websites"];
    }

    if(s1.value == "GraphicDesign" || s1.value == "Illustration" || s1.value == "MotionGraphics" || s1.value == "WebDesign") {
      s2.style.display="inline-block";
    } else {
      s2.style.display="none"; 
    }

    for(var option in optionArray) {
        var pair = optionArray[option].split("|");
        var newOption = document.createElement("option");
        newOption.value = pair[0];
        newOption.innerHTML = pair[1];
        s2.options.add(newOption);
    }
}

Like I said this all works great.就像我说的,这一切都很好。 but the final step is where I am struggling.但最后一步是我挣扎的地方。 I have the addButton in HTM that when clicked runs the next js code and gives me the dropdown.我在 HTM 中有addButton ,单击它时会运行下一个 js 代码并为我提供下拉列表。

I can't seem to figure out how to attach the function dropDownSelect from above.我似乎无法弄清楚如何从上面附加功能dropDownSelect

addButton JS:添加按钮JS:

function addSelection() {
    var html = '<tr><td><select class="custom-select addClick" id="mediaSel" name="mediaSel" onchange="dropDownSelect2(this.id, "mediaSel2")"><option value="">--Select--</option><option value="Illustration" name="Illustration">Illustration</option><option value="GraphicDesign" name="GraphicDesign">Graphic Design</option><option value="MotionGraphics" name="MotionGraphics">Motion Graphics</option><option value="WebDesign" name="WebDesign">Web Design</option></select></td><td><select class="custom-select" id="mediaSel2" name="mediaSel2"></select></td><td class="buttonRow"><div id="removeRow" class="removeButton" onclick="removeSelection()"><span class="minus"></span></div></td></tr>';

    $('tbody').append(html);
}

any thoughts?有什么想法吗?

您需要转义函数调用参数周围的内部双引号:

var html = '... onchange="dropDownSelect2(this.id, \"mediaSel2\")"><option ...`;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM