jQuery对话框按钮如何设置click事件?

时间:2011-08-05 11:43:51

标签: javascript jquery button dialog click

好的,我收到了这段代码:

    $(document).ready(
    function() {
        $(".dialogDiv").dialog({
            autoOpen: false,
            modal: true,
            position: [50, 50],
            buttons: {
                "Print page": function() {
                    alert("Print");
                },
                "Cancel": function() {
                    $(this).dialog("close");
                }
            }
        }
        );
    $('.ui-dialog-buttonpane button:contains("Print page")').attr("id", "dialog_print-button");
    $(".dialogDiv").parent().appendTo($('form'));
    }

如何为点击事件分配或设置新功能?

  

$( “#dialog_print按钮”)。 ???

编辑,这有效:

$("#dialog_print-button").unbind("click").click(
function () {
   alert("new function that overide the old ones")
}
)

试图找到如何在jQuery文档中做,但我认为在文档中很难找到。特别是当刚接触javaScript和jQuery库时。

编辑,获得帮助的一种快速方法是转到jQuery irc频道:D

4 个答案:

答案 0 :(得分:7)

我认为这会有所帮助:

$(".dialogDiv").dialog("option", "buttons", {
    "Print page": function() { /* new action */ },
    "Cancel": function() { $(this).dialog("close"); }
});

由于buttons属性设置了所有按钮,因此您必须包含cancel按钮处理程序。

答案 1 :(得分:5)

$("#Print page").click(function () {
   ...
});

或许它应该是

$("#dialog_print-button").click(function () {
   ...
});

答案 2 :(得分:4)

jQuery UI对话框按钮现在原生支持“id”属性。

    $("#dialog-form").dialog({
        autoOpen: false,
        height: "auto",
        width: 300,
        buttons:
        [
            {
                text: "Create Revision",
                id: "btnCreateRev",
                click: function () {
                    //code for creating a revision
                }
            },
            {
                text: "Cancel",
                id: "btnCancel",
                click: function () { $(this).dialog("close"); },
            }
        ]
    });

答案 3 :(得分:1)

您将代码放在按钮部分中:

 ...
 buttons: {                   
         "Print page": function() {                       
          //here you execute the code or call external functions as needed 
          }

单击“对话框”上的按钮后,将自动调用该代码。 因此,您可以直接插入实现逻辑的代码。