标签: jquery
我想知道使用jQuery为元素设置CSS3多个背景的正确方法。我想最终得到
content #{ background: url(images/snapGrid2.gif) left top, url(clientImages/vector-old-paper-1627.jpg); }
由于
答案 0 :(得分:2)
在这里。
$('.mbg').css('background', 'url(http://placehold.it/300x200) left top no-repeat, url(http://placehold.it/300x200) right bottom no-repeat')
是的,它与设置单个背景图像基本相同。
亲眼看看:jsFiddle。
答案 1 :(得分:1)
使用jQuery here