我正在开发这样一个应用程序,我必须在弹出窗口中选择问题类型,在选择类型后,我应该单击OK按钮,它将显示多个问题的webGrid。由于我已经创建了弹出窗口,并且它运行良好,当我单击“确定”按钮时,窗口正常。
因为我的弹出代码是
//Link
@Html.ActionLink("Contact Us", "AddDependentQuestion", "Question",
new { QuestionID = question.QuestionID },
new { @class = "openDialog", data_dialog_title = "Dependent Question" })
<script type="text/javascript">
$(document).ready(function () {
$(".openDialog").live("click", function (e) {
e.preventDefault();
$("#popup")
addClass("dialog")
.attr("id", $(this)
)
.appendTo("body")
.dialog({
close: function () { $(this).remove() },
modal: true
})
.load(this.href);
alert(this.href);
});
$(".close").live("click", function (e) {
e.preventDefault();
$(this).closest(".dialog").dialog("close");
});
});
</script>