我在MVC项目中使用了MS Dropdown列表。现在我想使用Jquery获取MS Dropdownvalue。怎么能实现呢?
$("#Country").msDropdown();
我想使用JQuery获取INDIA的选定值。
var countryName = $("#Country option:selected").val();
它似乎没有用。
答案 0 :(得分:0)
使用
var countryName = $("#Country option:selected").text();
而不是
var countryName = $("#Country option:selected").val();