gpt4 book ai didi

jquery - jquery ui 对话框按钮的背景图像

转载 作者:行者123 更新时间:2023-12-01 08:27:18 25 4
gpt4 key购买 nike

是否可以为按钮提供背景图像,我真的有一个图像,我想将其用于按钮,如果它们像默认按钮一样保持在适当的位置,那就太好了。现在我只是将它们放在对话框中,但其余内容是动态的,我不希望它们在滚动条出现时消失

编辑: 好的,所以我想出了如何将其设为背景图像,但我看不到整个图像

    $("#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
}
}
});

可能会有更多按钮

最佳答案

为什么不直接使用 CSS 定位按钮?

只需这样添加自定义按钮即可:

.ui-dialog .ui-button {
color: #fff;
background: #555555 url("button-normal.jpg") repeat-x;
}
.ui-dialog .ui-button.ui-state-hover {
color: #fff;
background: #0078a3 url("button-hovered.jpg") repeat-x;
}

关于jquery - jquery ui 对话框按钮的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2778026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com