我尝试将css样式设置为单个按钮jquery,
我尝试在我的网页中显示对话框,我正在使用jquery 1.9 ui。
我尝试为按钮设置css样式但我找不到方法,请帮助我,
此错误仅显示在我的jsp中,而不是上面的小提琴
jquery代码:
$('#success').dialog({
//autoOpen: true,
height: 180,
width: 350,
modal: true,
resizable: false,
dialogClass: 'no-close',
buttons: {
"Add": function () {
$(this).dialog("close");
$(this).dialog("close");
},
Cancel: function () {
$(this).dialog("close");
}
}
});
答案 0 :(得分:0)
您需要设置ui-button-text
类的样式。像这样:
.ui-button-text {
background: red;
}