我想在jquery對話框的按鈕上添加css類。添加類到jquery對話框按鈕
這裏是我的代碼:
$(document).ready(function(){
$('#messageBox p').html('bla bla bla. Ok?');
$('#messageBox').dialog({
modal : true,
buttons: {
'Yes': function() {
doSomething();
$(this).dialog('close');
},
'No': function() {
doAnotherThing();
$(this).dialog('close');
}
}
});
});
例如,我想加上我的‘是’按鈕「.red」級。
我該怎麼做?
謝謝!
這是最好的答案!注意:在類屬性周圍使用引號,在iPad上會引發錯誤(可能是因爲類是保留(關鍵字)字) – VDP 2012-04-30 10:44:51
在IE8中也有同樣的錯誤。用'「class」'而不是'class'解決 – 2015-04-20 08:52:39