我有一个带有单个位置下拉列表的移动表单。当我从 DDL 中选择一个位置时,我希望表单提交给一个动作。
我的剃须刀:
@Html.DropDownListFor(a => a.SelectedLocationID
, Model.AllLocation
, "Select your location")
我的jQuery:
$("#SelectedLocationID").on("change", function () {
//var $id = $(this).val();
$("form").submit();
//$("form").submit({ "id": $id }, test);
})
问题是该操作需要一个“id”变量,但所选位置变量是 SelectedLocationID。如何动态更改该变量名称?