2017-04-23 3 views
-1

그래서 나는 내가는 IEnumerable을 생성 (SelectListItem의) 다음과 같이하는 선택의 옵션을 채우기 위해이 목록을 사용하는 뷰를 가지고 :MVC JQuery와는 선택 요소에 옵션을 찾을 수 없습니다

@ModelType MyModel 
@Code 
    ViewData("Title") = "Edit" 

    Dim TypeList As IEnumerable(Of SelectListItem) = { 
    New SelectListItem() With {.Value = "American", .Text = "American"}, 
    New SelectListItem() With {.Value = "Chinese", .Text = "Chinese"}, 
    New SelectListItem() With {.Value = "Mexican", .Text = "Mexican"}, 
    New SelectListItem() With {.Value = "Italian", .Text = "Italian"}, 
    New SelectListItem() With {.Value = "Japanese", .Text = "Japanese"}, 
    New SelectListItem() With {.Value = "Sandwich", .Text = "Sandwich"}, 
    New SelectListItem() With {.Value = "BBQ", .Text = "BBQ"}, 
    New SelectListItem() With {.Value = "Other", .Text = "Other"} 
} 
End Code 

<h2>Edit MyModel</h2> 

@Using (Html.BeginForm("Edit", "MyModel", FormMethod.Post, New With {.name = "frmEditMyModel", .id = "frmEditMyModel"})) 
    @Html.AntiForgeryToken() 

    @<div class="form-horizontal"> 
     <hr /> 
     <div class="text-danger">@(ViewData("mmError"))</div> 
     @Html.HiddenFor(Function(model) model.ID) 

...... 
     <div class="form-group" id="typecombo"> 
      @Html.LabelFor(Function(model) model.Type, htmlAttributes:=New With {.class = "control-label col-md-2"}) 
      <div class="col-md-10"> 
       <select class="form-control"> 
        @For Each item In TypeList 
         @<option>@item.Text</option> 
        Next 
       </select> 
       @Html.HiddenFor(Function(model) model.Type, New With {.id = "type"}) 
       @Html.ValidationMessageFor(Function(model) model.Type, "", New With {.class = "text-danger"}) 
      </div> 
     </div> 
     <div class="form-group" id="typebox"> 
      <div class="col-md-2 col-xs-2" style="text-align:right"></div> 
      <div class="col-md-10 col-xs-10"> 
       @Html.EditorFor(Function(model) model.Type, New With {.htmlAttributes = New With {.class = "form-control"}}) 
      </div> 
     </div> 
....... 

    </div> End Using 

그래서 이것이 이미 존재하는 것에 대한 Edit 페이지가 되었기 때문에, select 요소에 MyModel.Type과 같은 옵션이 선택되기를 원합니다. 그리고 그 위에 유형이 "기타"이면 사용자가 입력 할 수있는 텍스트 상자를 표시하십시오. 그래서 여기 jquery 내가 가지고있다 :

@Section Scripts 
    @Scripts.Render("~/bundles/jqueryval") 

<script> 
    $(function() { 

     // First see if the current 'type' is in the dropdown options or not 
     var exists = false; 
     var curType = "@Model.Type"; 
     $('#typecombo option').each(function() { 
      if (this.Text == curType) { 
       exists = true; 
       $("#typecombo select").val(curType).change(); 
      } 
     }); 
     if (exists == false) { 
      $("#typecombo select").val("Other").change(); 
     } 

     // Toggle show/hide of Type textbox if selection in Type combo is 'Other' 
     var selection = $('#typecombo :selected').text(); 
     selection.trim(); 
     if (selection === 'Other') { 
      $('#typebox').show(); 
     } 
     else { 
      $('#typebox').hide(); 
     } 
     $('#typecombo').change(function() { 
      var selection = $('#typecombo :selected').text(); 
      selection.trim(); 
      if (selection === 'Other') { 
       $('#typebox').show(); 
      } 
      else { 
       $('#typebox').hide(); 
      } 
     }) 
</script> 
End Section 

어떤 이유로, 그것은 이미 존재하는 값을 찾을 수 없습니다. 페이지가 열릴 때 @ Model.Type을 표시하는 경고를 표시하려고 시도했지만 올바르게 표시됩니다. 그러나 중요하지 않습니다. 매번 선택한 값을 "기타"로 설정하고 선택에서 옵션으로 찾지 못하기 때문에 텍스트 상자를 표시합니다. 왜?? 당신이

 if (this.text == curType) { 
      exists = true; 
      $("#typecombo select").val(curType).change(); 
     } 

자바 스크립트에이 섹션

 if (this.Text == curType) { 
      exists = true; 
      $("#typecombo select").val(curType).change(); 
     } 

을 변경해야처럼

+0

입니다.'@Html.DropDownListFor (Function (model) model.Type, TypeList)'를 사용하고'@Html.HiddenFor()'와'@ Html.EditorFor()'를 삭제하면 'Type' - 올바른 옵션을 선택하는 데 스크립트가 필요하지 않습니다. 그리고 텍스트 상자에 다른 값을 추가하려면 다른 속성에 바인딩하십시오. –

답변

1

은 대소 문자 구분입니다 찾습니다. 이것을 주목하십시오. 그리고 DOM 요소의 속성 이름은 text

+0

@charlietfl jQuery는 모델이 아니라 DOM 요소와 함께 작동합니다. –