gpt4 book ai didi

jQuery Ui 对话框按钮,如何添加类?

转载 作者:行者123 更新时间:2023-12-03 21:26:31 25 4
gpt4 key购买 nike

我在另一个线程中找到了这个答案..

How to add multiple buttons in Jquery UI dialog box?

使用此语法,如何将类添加到特定按钮?

 $("#mydialog").dialog({
buttons: {
'Confirm': function() {
//do something
$(this).dialog('close');
},
'Cancel': function() {
$(this).dialog('close');
}
}
});

最佳答案

您可以向对话框中的按钮添加类...通过

$('#mydialog').dialog({
buttons:{
"send":{
text:'Send',
'class':'save'
},
"cancel":{
text:'Cancel',
'class':'cancel'
}
});

我认为这对你有用。您可以找到更多答案 here .

关于jQuery Ui 对话框按钮,如何添加类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6702279/

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