Jquery Select 2 不显示带有触发器更改的选定值

Jquery Select 2 not showing selected value with trigger change

我使用 Select2 -ver 4.0.12 但不要 Select 2 不显示所选值并触发事件更改 这是我的代码。我认为 Select2 -ver 4.0.12 是错误

  $("#Misson_Type").select2({
        width: '290px',
        dropdownParent: $("#modMission"),
        
    });

  $('body').on('click', 'a[id^="rowedit-"]', function (e) {
          $('#Misson_Type').val('9');
          $('#Misson_Type').trigger('change');  
   })

     <div class="col-10">
       @Html.DropDownListFor(m => m.Misson_Type,(IEnumerable<SelectListItem>)ViewBag.MissonType, new { @class = "form-control select2" })
我是我们的 Ethis 代码,但不工作
   $('#Misson_Type option').eq('9').prop('selected',true);
   $("#Misson_Type").trigger("change");

我正在使用此代码
我的问题解决了

   $("#Misson_Type").select2({
        width: '150px',
        dropdownParent: $('#modMission .modal-content')
    });