1

在这里,我试图在单击按钮时关闭模式对话框,但它没有关闭对话框。这是我的代码

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; 
}
); 
4

3 回答 3

2

除非我错过了重点:

$('#MainContent_uscRetailParameters_btnOK').click(function (e) {
    MyFunctionCall();   //i.e. call you function here
    $.modal.close();
    return false;
});
于 2012-04-17T07:24:47.377 回答
1

其他地方可能有错误,请检查您的浏览器控制台。

创建了一个示例:http: //jsfiddle.net/eTnJF/

带代码:

$(document).ready(function() {
    $('.open').click( function() {
        $('#modal').modal();
    });

    $('.close').click( function() {
        closemodal();
        return false;
    });

    function closemodal() {
        alert("true");
        $.modal.close();
    }
});

哪个工作正常:)

于 2012-04-17T07:50:08.860 回答
0

如果您想简单地关闭 modalpopup,那么 javascript 代码就是。

var mpu = $find('ModalPopupExtender1');
mpu.hide();

希望能帮助到你。

谢谢卡姆兰

于 2012-04-17T08:34:33.733 回答