我正在使用jquery版本1.8.3對話框控件,其中有兩個按鈕。Jquery對話框中的按鈕文本鼠標光標更改
$('<div></div>').appendTo('body').html().dialog({
modal: true, zIndex: 10000, autoOpen: true,
width: '450px', resizable: false,stack: false,
dialogClass: 'closeDialog',
buttons: {
"YesButton" : {
text: "Yes",
id: "yesbtnid",
} ,
"NoButton" : {
text: "No",
id: "nobtnid",
}
},
open: function() {
$(this).closest('.ui-dialog').find('.ui-button').removeClass("ui-button").addClass("btnHeightWidth");
});
}
});
我已經加了我的CSS類的按鈕,我的CSS類是
.btnHeightWidth
{
width:100px;
height:43px;
font-Weight:bold;
font-size:16px;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEE9E2', endColorstr='#FFC5BFB5');
behavior: url(border-radius.htc);
border-radius: 11px;
-webkit-border-radius: 11px;
cursor:pointer;
}
的問題是,當我在按鈕上的文字將鼠標放置,「是」或「否」的鼠標光標的變化從手到指針,如何使它像手一樣穩定。
當我刪除我的CSS類的鼠標光標仍然是手,所以我懷疑問題出在我的自定義CSS類。 – Dwellerincellar
你可以發佈jsfiddle.net嗎? – SW4
http://jsfiddle.net/CC9gM/3/ – Dwellerincellar