我有一个下拉列表,当它发生变化时。我希望所选值使用 ajax 进入控制器
$(document).ready(function () {
$("#otherCatches").change(function () {
$.ajax({
url: "Clients/DDL",
type: "POST",
data: {
name: $('#othercatches').val()
},
success: function (result) {
alert(result)
}
});
return false;
});
});
<select id ="otherCatches">
@foreach (var item in Model.Sample)
{
<option>
@item.SampleName
</option>
}
</select>
它没有击中控制器
[HttpPost]
public virtual ActionResult DDL(int name)
{
//do method here
}