我有一个包含产品,数量,费率和总量的网页。我有一个下拉列表,其中包含产品列表。
现在根据产品的选择我需要获得产品的费率。
我认为必须有一些回调方法才能得到它。
答案 0 :(得分:0)
在项目中,我需要根据国家/地区选择绑定州下拉列表,所以我这样做,如下所示 实际上在我的城市视图中我有2个下拉列表,如国家和州。
在我的城市控制器中我有行动
public JsonResult State(int countryId)
{
var stateList = CityRepository.GetList(countryId);
return Json(stateList, JsonRequestBehavior.AllowGet);
}
在我看来,我得到的所有状态数据都在下面
<script type="text/javascript">
function cascadingdropdown() {
$("#stateID").empty();
$("#stateID").append("<option value='0'>--Select State--</option>");
var countryID = $('#countryID').val();
$.ajax({
url: "/City/State",
dataType: 'json',
data: { countryId: countryID },
success: function (data) {
$("#stateID").empty();
$("#stateID").append("<option value='0'>--Select State--</option>");
$.each(data, function (index, optiondata) {
alert(optiondata.StateName);
$("#stateID").append("<option value='" + optiondata.ID + "'>" + optiondata.StateName + "</option>");
});
},
error: function () {
alert('Faild To Retrieve states.');
}
});
}
</script>
我认为这会对你有帮助。