Setting background-image using jQuery CSS property

前端 未结 11 2086
渐次进展
渐次进展 2020-11-22 10:34

I have an image URL in a imageUrl variable and I am trying to set it as CSS style, using jQuery:

$(\'myObject\').css(\'background-image\', image         


        
11条回答
  •  醉梦人生
    2020-11-22 11:00

    Try modifying the "style" attribute:

    $('myObject').attr('style', 'background-image: url("' + imageUrl +'")');
    

提交回复
热议问题