3

我敢肯定它很简单,但找不到任何东西。我有一个对话框:

$(function() {

    $(".dialog").hide();
    $( "#dialog:ui-dialog" ).dialog( "destroy" );

    $( "#dialog-message" ).dialog({
        modal: true,
        autoOpen:false,
        width: 800,
        buttons: { "Accept": function() {alert("OK");}, "Close": function() {$(this).dialog("close");}}
    });

    $(".button").mousedown(function () {
            $("#dialog-message").show().dialog("open");
    });
});

我需要的是使“接受”按钮链接到任何网址。此时它显示警报。提前致谢

4

1 回答 1

9

像这样的东西?

"Accept": function() {window.location.href = "http://www.google.com";}
于 2012-07-26T12:20:23.180 回答