gpt4 book ai didi

javascript - jQuery UI 对话框的不同动画根据按钮关闭?

转载 作者:行者123 更新时间:2023-11-28 21:03:14 24 4
gpt4 key购买 nike

是否可以(以合理的方式)根据单击的按钮以不同的动画关闭 jQuery UI 对话框?

$( "#dialog" ).dialog({
autoOpen: false,
show: "blind",
hide: "explode"
buttons: {
"Delete": function () {
... one animation here ...
$(this).dialog("close");
},
"Cancel" : function () {
... another here ...
$(this).dialog("close");
}
}
});

最佳答案

是的。

$( "#dialog" ).dialog({
//autoOpen: false,
show: 'blind',
buttons: {
Delete: function () {
$( this ).dialog( 'option', 'hide', 'explode' );
$(this).dialog("close");
},
Cancel : function () {
$( this ).dialog( 'option', 'hide', 'blind' );
$(this).dialog("close");
}
}
});

实例:http://jsfiddle.net/GLUHa/2/

关于javascript - jQuery UI 对话框的不同动画根据按钮关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10498974/

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