jquery-ui 的对话框中是否有任何属性可以提供类似于 div 的标题属性的行为。(在悬停时显示标题名称)?
下面是生成的确认对话框的确定按钮的 html。我希望将 div 的“标题”属性应用于“确定”和“取消”按钮
<button type="button" class="ui-button
ui-widget
ui-state-default
ui-corner-all
ui-button-text-only" role="button" aria-disabled="false">
<span class="ui-button-text">Ok</span> </button>
编辑: 这是我用于对话框的一些属性
dialog({
height:110,
widht:460,
title:"This is dialog Title",
modal: true,
buttons: {
"Ok": function() {
$( this ).dialog( 'destroy');
},
Cancel: function() {
$( this ).dialog( 'destroy');
}
},