我使用jQuery UI的對話,並添加使用jquery這樣的按鈕,鼠標懸停位置:jQuery UI的對話框按鈕改變
$("#151").dialog({
autoOpen: false,
autoResize: true,
buttons: {
"OK": function() {
jQuery(this).dialog('close');
}
}
,
open: function() {
$('.ui-dialog-buttonset').find('button:contains("OK")').focus();
$('.ui-dialog-buttonset').find('button:contains("OK")').addClass('customokbutton');
}
});
和的CustomButton類看起來是這樣的:
.customokbutton {
text-indent: -9999em; /* hides the text */
color: transparent; /* also hides text */
background-image: url(images/login-icon.png); /*replaces default image */
background-repeat: no-repeat;
background-color: transparent;
background-repeat: no-repeat;
cursor: pointer;
border:none;
height:30px;
outline: none;
}
但是當我將鼠標放在按鈕上,它會稍微向右移動。我看到使用螢火蟲其下面的CSS類添加當我把鼠標離開(改變位置)
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only customokbutton" role="button" aria-disabled="false"><span class="ui-button-text">OK</span></button>
和這一個時我懸停按鈕:
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only customokbutton ui-state-hover" role="button" aria-disabled="false"><span class="ui-button-text">OK</span></button>
和css是這樣的:
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
border: 1px solid #707070;
/* background: #dadada;*/
font-weight: normal;
color: #212121;
}
我該如何解決?
給我們使用類似的jsfiddle – Andrew 2013-05-03 15:20:57
你的代碼的工作示例又是怎樣'UI的狀態hover'類中定義的jQuery用戶界面? – Tallmaris 2013-05-03 15:21:50
@Tallmaris請檢查更新的問題是否爲css – DotnetSparrow 2013-05-03 15:29:34