How to Set Selected value in Multi-Value Select in Jquery-Select2.?

后端 未结 14 914
轻奢々
轻奢々 2020-12-01 01:41

hi all i am binding my dropdown with Jquery-Select2. Its working fine but now i need to Bind my Multi-Value selectBox by using Jquery-Select2.

M

14条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 01:54

    var valoresArea=VALUES
    // it has the multiple values to set separated by comma
    var arrayArea = valoresArea.split(',');
    $('#area').select2('val',arrayArea);
    

提交回复
热议问题