谁能告诉我为 html 按钮指定什么类名,例如,
<div id='dlg' class='dialog'>
<input type="text" id="client" name="client" />
<button type='button' class='WHAT_CLASS' onclick="afunction()">Cancel</button>
</div>
我想要相同的按钮外观 jquery ui 'Redmond' 样式默认适用
$dlg.dialog({
autoOpen: false,
title: 'Company name',
buttons: {
'Cancel': function() {
$dlg.dialog('close');
}, ......
谢谢