如何使用jQuery在多选下拉菜单中设置值?

时间:2019-02-12 12:58:50

标签: javascript php jquery-ui-multiselect

我想使用以下功能更新p_fullname并将数据放入多选下拉列表中:

function update_project_group(pg_id,pg_group_name,p_fullname){
        document.getElementById('pg_id').value=pg_id;
        document.getElementById('group_name').value=pg_group_name;
        document.getElementById('projectmember').value=p_fullname;

        var array = p_fullname;
        var dataarray=array.split(",");
        $("#projectmember").val(dataarray);
        $('#projectmember').multiselect( 'settings', { columns: 2}); 
    }

1 个答案:

答案 0 :(得分:0)

我认为可以找到答案here

HTML

<select name='strings' id="strings" multiple style="width:100px;">
    <option value="Test">Test</option>
    <option value="Prof">Prof</option>
    <option value="Live">Live</option>
    <option value="Off">Off</option>
    <option value="On">On</option>
</select>

javaScript

var values="Test,Prof,Off";
$.each(values.split(","), function(i,e){
    $("#strings option[value='" + e + "']").prop("selected", true);
});

这是一个可行的示例:http://jsfiddle.net/McddQ/1/