请我需要有关 jQuery 对话框功能的帮助。各个部分的代码如下所示。
这是 actionLink 选择按钮的代码
Html.ActionLink("Select", "EditExistingReferral", "UnresolvedItems", new { unresolvedReferralId = item.Id }, new { @class = "selectReferral" })
单击此“选择”按钮时,我希望显示一个对话框。这是 jQuery 对话框的代码。
$(function DisplaySystemMessage() {
$('.selectReferral').click(function (e) {
e.preventDefault();
$('#system-message').dialog({
modal: true,
width: 400,
height: 'auto',
buttons: {
"Continue": function () {
var href = $('.selectReferral').attr('href');
//alert(href);
$(this).dialog('close');
},
"Cancel": function () {
$(this).dialog('close');
}
}
});
//if its referral - open dialog
$('#system-message').dialog('open');
});
});
单击“继续”对话框按钮时,我希望使用适当的参数调用以下操作方法:
[HttpGet]
public ActionResult EditExistingReferral(string unresolvedReferralId) {
int existingReferralId = int.Parse(unresolvedReferralId);
....
}
请在单击“选择”按钮时如何获取正确的参数,以便在单击“继续”对话框按钮时将其传递给 EditExistingReferral 操作方法?
提前致谢。