jquery取消按钮文本更改。我需要"否"而不是"取消"

时间:2014-11-26 07:01:38

标签: jquery dialog

  $("#dvdialogconfirm").text(msg);
        $("#dvdialogconfirm").dialog({
            resizable: false,
            modal: true,
            zIndex: 100001,
            closeOnEscape: false,
            width: 360,
            buttons: {
                OK: function () {
                    $(this).dialog("close");
                    if (func != null) {
                        func();
                    }
                },
                Cancel:
                    function () {
                    func1();
                }
            }
        });

2 个答案:

答案 0 :(得分:2)

$("#dvdialogconfirm").text(msg); 
  $("#dvdialogconfirm").dialog({ 
     resizable: false, 
     modal: true, 
     zIndex: 100001, 
     closeOnEscape: false, 
     width: 360, 
     buttons: { 
        YES: function () { 
                $(this).dialog("close"); 
                if (func != null) {
                    func(); 
                 } 
             }, 
        NO: function () { 
             func1(); 
            } 
     } 
  });

我认为这个可以帮助你。

答案 1 :(得分:0)

您可以根据需要更改对象来更改按钮文本。假设您希望它为“是”或“否”对话框:

$("#dvdialogconfirm").text(msg);
        $("#dvdialogconfirm").dialog({
            resizable: false,
            modal: true,
            zIndex: 100001,
            closeOnEscape: false,
            width: 360,
            buttons: {
                Yes: function () {
                    $(this).dialog("close");
                    if (func != null) {
                        func();
                    }
                },
                No:
                    function () {
                    func1();
                }
            }
        });