gpt4 book ai didi

jquery - 将多个 css 属性添加到简单模态

转载 作者:太空宇宙 更新时间:2023-11-04 12:27:21 25 4
gpt4 key购买 nike

如何将 overlayCss 中的多个 CSS 属性应用于简单模式(除了 backgroundColor 属性)?我试过用逗号分隔属性,但这会破坏功能。

$('#basic-modal .basic').click(function (e) {
$('#basic-modal-content').modal({
appendTo: $(window.parent.document).find('body'),
overlayCss: {backgroundColor:"#000"},
overlayClose:true,
});
// Set overlay's width
$(window.parent.document).find('#basic-modal-content').css('width', "100%");

return false;
});

最佳答案

你最好使用实际的 css 类来定义多个样式

 $('#basic-modal-content').modal({
appendTo: $(window.parent.document).find('body'),
overlayCss: 'myClass',
overlayClose:true,
});

然后在CSS中

.myClass{
[as many properties as you want here]
}

它会让你的代码更容易维护和扩展

关于jquery - 将多个 css 属性添加到简单模态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27925115/

25 4 0
文章推荐: linux - 如何确定 shell 脚本(test.sh)的执行时间、CPU 和内存利用率?
文章推荐: java - 如何使用 Selenium 在框架/IFrame 和子框架上行走
文章推荐: c S_ISDIR 和 S_ISREG 不工作
文章推荐: javascript - 仅更改 标签的属性,其中包含使用 jQuery 的 SVG 元素