2

例如,我使用带有此代码的 jqueryui,对话框插件。

$( "#showUser-form" ).dialog(
                    {
                        buttons: {
                            "OK": function()
                            {
                                    $( this ).dialog( "close" );
                            },
                            cancel: function()
                            {
                                $( this ).dialog( "close" );
                            }
                        },
                        close: function() {}
                    });

例如,如何更改多语言网站的“取消”按钮的文本?

问候

雨果

4

1 回答 1

3

您必须创建一个新对象来包含按钮并将其传递给buttons参数。然后您可以动态设置按钮的文本。

jsFiddle在这里

像这样:

//You can dynamically change button text here
var buttons = [,];
buttons['OK'] = 'OK :)';
buttons['Cancel'] = 'Cancel :(';

var buttonArray = {};
buttonArray[buttons['OK']] = function() {
    //Set OK function here
    $(this).dialog('close');
};
buttonArray[buttons['Cancel']] = function() {
    //Set Cancel function here
    $(this).dialog('close');
};


$(function () {
    $('#dialog').dialog({
        buttons: buttonArray
    });
});
于 2012-10-26T14:47:02.437 回答