模态框在运行时更改标题和按钮名称

时间:2012-07-03 02:15:16

标签: javascript jquery jquery-ui modal-dialog jquery-dialog

我希望能够在运行时更改模态和按钮的标题。 目前我有这个 我有行动要么批准要么拒绝

var recButton = actions =='approval' ? 'Approve' : 'Deny';

$("#dialog").dialog(
    {
        modal : true,
        buttons : {
            'update all' : function() {
                // window.location.reload();
                // $( this ).dialog( "close" );
                //do something here
            },
            Cancel : function() {
                $(this).dialog("close");
            }
        }
    }); //dialog
});

我也试过按钮

$("#dialog").dialog(
    {
        modal : true,
        buttons : {
            recButton : function() { ...

但是在模态中它没有很好地转换,只是说recButton而不是变量值。我也需要改变标题。

更新:通过简单标题获得标题:

1 个答案:

答案 0 :(得分:5)

嘿Autolycus:试试这个男人:工作演示 http://jsfiddle.net/C4A9b/10/

请使用firebug检查元素id / class:

$('.ui-dialog-title').html("HULK is awesome");应该可以解决问题。

希望它有助于:)

<强>码

$(document).ready(function() {
    $('#theLink').click(function(){
                $( "#forgot-dialog" ).dialog( "open" );    
    });

    $( "#forgot-dialog" ).dialog({
            modal: true,
            autoOpen: false,
            height: 255,
            width: 300,
            buttons: {
                "ChangeTitle": function() {

                    alert("Title before cahnge ==> " + $('.ui-dialog-title').html());
                   $('.ui-dialog-title').html("HULK is awesome");
                    // document.forms["forgotform"].submit();
                },
                Cancel: function() {
                    $( this ).dialog( "close" );
                }
            },
    });


});

var formname = "form_name_here";

$("#ui-dialog-title-"+formname).innerHTML = "Hulk is awesome title";

下图显示之前和之后。

点击更改标题按钮之前的图片

enter image description here

点击更改标题后

enter image description here