2016-11-25 22 views
0
@Html.DropDownList("city",(SelectListItem)ViewBag.city,new { @class = "form-control", @onchange="fun1()"}) 


$(document).ready(function fun1() { 

     alert("Selected item value is " + $("#city").val() + " and Selected item 
      text is " + $("#city option:selected").text()); 

    }); 

答えて

0

function fun1()をdocument.readyの外に書き込みます。それが動作します。

関連する問題