一位朋友给了我一个使用这个jquery代码的解决方案:
.css({ backgroundColor: '#ddd' })
相反,我想使用背景图片。如何更改jquery代码来执行此操作?
我想做像
这样的事情.css({ backgroundImg: 'images/newsletter-dropdown.jpg' })
谢谢!
答案 0 :(得分:1)
简单的馅饼:
$( element ).css({ 'background-color': 'transparent', 'background-image': 'images/newsletter-dropdown.jpg' });