在这里,我试图在单击按钮时关闭模式对话框,但它没有关闭对话框。这是我的代码
function closemodal() {
alert("true");
$.modal.close();
return false;
}
和
protected void btnOK_Click(object sender, EventArgs e)
{
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "ScriptRegistration", "closemodal();", true);
}
我需要调用一个javascript函数,然后我需要关闭该对话框..有什么建议吗?
编辑:
$(document).ready(function () {
$('#MainContent_uscRetailParameters_btnOK').click(function (e) {
closemodal();
return false;
});
function closemodal() {
$.modal.close();
}
});
编辑2:
$('#CusCatPOPUP .basic').click(function (e)
{
$('#CusCatPOPUP-content').modal();
return false;
}
);