1. 程式人生 > >style.backgroundImage找不到路徑

style.backgroundImage找不到路徑

下面這種寫法一直找不到圖片,路徑正確 :

target.style.backgroundImage='url('../../images/index/jr-content-h_bg.jpg')';

改為下面這種寫法就能找到了: 

target.style.backgroundImage='url(' + require('../../images/index/jr-content-h_bg.jpg') + ')';