是否可以给按钮一个背景图像真的我有一个我想用于按钮的图像,如果它们像默认按钮一样留在原地会很好。现在我只是将它们放在对话框中,但其余内容是动态的,我不希望它们在滚动条出现时消失
编辑: 好的,所以我想出了如何使它成为背景图像,但是我看不到整个图像
$("#statusbox").dialog({
autoOpen: false,
bgiframe: true,
modal: true,
width: 'auto',
height:'auto',
position: 'top',
title:"Check Order Status",
open: function(event, ui) {
$(this).css({'max-height': $(window).height()-$(this).height() - 50 , 'overflow-y': 'auto'});
$('.ui-dialog-buttonpane').find('button:contains("Find")').css("background-image", "url(images/order_now.gif)"); ;
},
buttons: {
Find: function() {
//do find
}
}
});
可能会有更多按钮