gpt4 book ai didi

jquery - CSS 背景具有无效的属性值

转载 作者:行者123 更新时间:2023-11-28 15:17:12 24 4
gpt4 key购买 nike

我将以下 CSS 规则放入数据库中,这些规则在 Google Chrome 中有效:

background: url(/lib/editor/frames/6.1.png) center -7px / 19mm 12mm no-repeat, url(/lib/editor/frames/6.2.png) center 0px / 500mm 1.4mm no-repeat, linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(211, 233, 203) 50%, rgb(255, 255, 255) 100%) center 5px / 500mm 3.7mm no-repeat;
background-color: white;

当我尝试使用 JQuery 将此规则添加到 div 时,此规则合并为单个规则并获得无效值

background: url(/lib/editor/frames/6.1.png) center -7px / 19mm 12mm no-repeat white, url(/lib/editor/frames/6.2.png) center 0px / 500mm 1.4mm no-repeat white, linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(211, 233, 203) 50%, rgb(255, 255, 255) 100%) center 5px / 500mm 3.7mm no-repeat;

我怎么知道它为什么无效?

最佳答案

如果您将此确定为一个错误,这是一个最新版本的 JQuery 的错误,您应该将其报告给 JQuery GitHub问题页面;不在这里。

解决方法是手动设置样式属性。

$('.whatever').attr('style', 'background: url(/lib/editor/frames/6.1.png) center -7px / 19mm 12mm no-repeat, url(/lib/editor/frames/6.2.png) center 0px / 500mm 1.4mm no-repeat, linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(211, 233, 203) 50%, rgb(255, 255, 255) 100%) center 5px / 500mm 3.7mm no-repeat; background-color: white;');

关于jquery - CSS 背景具有无效的属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41734910/

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