1

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

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 而不是变量值。我也需要更改标题。

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

4

1 回答 1

6

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

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

$('.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";

下图显示之前和之后。

单击更改标题按钮之前的图像

在此处输入图像描述

点击更改标题后

在此处输入图像描述

于 2012-07-03T02:37:41.280 回答