gpt4 book ai didi

jquery - 将 href 添加到 JQuery 对话框按钮

转载 作者:行者123 更新时间:2023-12-01 00:48:48 25 4
gpt4 key购买 nike

我确信这很简单,但找不到任何东西。我有一个对话框:

$(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");
});
});

我需要的是使“接受”按钮链接到任何网址。这时就表现出警觉。提前致谢

最佳答案

类似这样的吗?

"Accept": function() {window.location.href = "http://www.google.com";}

关于jquery - 将 href 添加到 JQuery 对话框按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11669123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com