hurriedly% 2019-01-01 10:28 采纳率: 100%
浏览 26

将值推送到多选

I need to push values which i am getting from database to multi select.Below code will push data to text area based on onchange in select.I need to change text area to multi select.How to achieve this? Calling below method like

HTML

<select id="select-execution-group-update" class="form-control" onchange="getParamListForCustomGroupUpdate()">

//JS file

    function getParamListForCustomGroupUpdate() {

var selected_execution_group = document.getElementById("select-execution-group-update").value;

$.ajax({
    method: "GET",
    dataType: "text",
    url: "getObjectList",
    data: {
        execution_group_name: selected_execution_group
    },
    success: function (result) {
        result = result.replace(/\\/g, "");
        document.getElementById("object_custom_name").value = result;
    }

}

);

}

  • 写回答

2条回答 默认 最新

  • weixin_33695082 2019-01-01 10:58
    关注
     function getParamListForCustomGroupUpdate() {
    
    var selected_execution_group = document.getElementById("select-execution-group-update").value;
    
    $.ajax({
        method: "GET",
        dataType: "text",
        url: "getObjectList",
        data: {
            execution_group_name: selected_execution_group
        },
        success: function (result) {
            // result in array
            result = result.replace(/\\/g, "");
            referenceNode = document.getElementById("object_custom_name");
            //document.getElementById("object_custom_name").value = result;
            var myDiv = document.getElementById("myDiv");
    
            //Create and append select list
            var selectList = document.createElement("select");
            selectList.id = "mySelect";
            myDiv.appendChild(selectList);
    
            //Create and append the options
            for (var i = 0; i < result.length; i++) {
               var option = document.createElement("option");
               option.value = result[i];
               option.text = result[i];
               selectList.appendChild(option);
            }
            referenceNode.parentNode.insertBefore(myDiv, referenceNode.nextSibling);
        }
    
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 yolov8边框坐标
  • ¥15 matlab中使用gurobi时报错
  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真