Setting background-image using jQuery CSS property

前端 未结 11 2093
渐次进展
渐次进展 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条回答
  •  萌比男神i
    2020-11-22 10:52

    You probably want this (to make it like a normal CSS background-image declaration):

    $('myObject').css('background-image', 'url(' + imageUrl + ')');
    

提交回复
热议问题