gpt4 book ai didi

jquery - 如何仅将背景颜色添加到按钮区域?

转载 作者:太空宇宙 更新时间:2023-11-03 23:55:46 28 4
gpt4 key购买 nike

如果我将 background:#e7eef9; 添加到 jQuery("#div_element").dialog,这将附加到整个对话框。我如何才能将其仅附加到 buttons 区域?

function test(buttonEl)
{
jQuery("#div_element").dialog({
resizable: false,
height:200,
modal: true,
width: 300,
buttons: {
Cancel: function() {
jQuery( this ).dialog( "close" );
}
}
});
}

最佳答案

使用 general sibling combinator ~

CSS:

#div_element ~ .ui-dialog-buttonpane button {
background: e7eef9;
}

关于jquery - 如何仅将背景颜色添加到按钮区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18731210/

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