84

如何在 JavaScriptbackground-image中获取元素的 URL ?<div>例如,我有这个:

<div style="background-image:url('http://www.example.com/img.png');">...</div>

我将如何获得URL background-image

4

6 回答 6

102

你可以试试这个:

var img = document.getElementById('your_div_id'),
style = img.currentStyle || window.getComputedStyle(img, false),
bi = style.backgroundImage.slice(4, -1).replace(/"/g, "");

// Get the image id, style and the url from it
var img = document.getElementById('testdiv'),
  style = img.currentStyle || window.getComputedStyle(img, false),
  bi = style.backgroundImage.slice(4, -1).replace(/"/g, "");

// Display the url to the user
console.log('Image URL: ' + bi);
<div id="testdiv" style="background-image:url('http://placehold.it/200x200');"></div>

编辑:

根据@Miguel 和下面的其他评论,如果您的浏览器(IE/FF/Chrome ...)将其添加到 url,您可以尝试删除额外的引号:

bi = style.backgroundImage.slice(4, -1).replace(/"/g, "");

如果它可能包含单引号,请使用:replace(/['"]/g, "")

演示小提琴

于 2012-12-23T17:44:36.477 回答
24

只是为了防止其他人有类似的想法,您还可以使用正则表达式:

var url = backgroundImage.match(/url\(["']?([^"']*)["']?\)/)[1];

然而,根据 jsPerf 的说法,@Praveen 的解决方案实际上在 Safari 和 Firefox 中表现更好:http: //jsperf.com/match-vs-slice-and-replace

如果您想考虑值包含引号但不确定它是双引号还是单引号的情况,您可以这样做:

var url = backgroundImage.slice(4, -1).replace(/["']/g, "");
于 2015-09-25T19:44:39.090 回答
12

尝试这个:

var url = document.getElementById("divID").style.backgroundImage;
alert(url.substring(4, url.length-1));

或者,使用replace

url.replace('url(','').replace(')','');
// Or...
backgroundImage.slice(4, -1).replace(/["']/g, "");
于 2012-12-23T17:43:47.700 回答
10

首先,您需要返回背景图像内容:

var img = $('#your_div_id').css('background-image');

这将返回如下 URL:

“网址(' http://www.example.com/img.png ')”

然后您需要删除此 URL 中不需要的部分:

img = img.replace(/(url\(|\)|")/g, '');
于 2016-11-20T09:34:04.687 回答
1

const regex = /background-image:url\(["']?([^"']*)["']?\)/gm;
const str = `<div style="background-image:url('http://www.example.com/img.png');">...</div>`;
let m;

while ((m = regex.exec(str)) !== null) {
    // This is necessary to avoid infinite loops with zero-width matches
    if (m.index === regex.lastIndex) {
        regex.lastIndex++;
    }
    
    // The result can be accessed through the `m`-variable.
    m.forEach((match, groupIndex) => {
        console.log(`Found match, group ${groupIndex}: ${match}`);
    });
}

于 2020-07-14T03:27:54.543 回答
1

登录以控制台所有background-imageURL,不带括号和引号:

var element = document.getElementById('divId');
var prop = window.getComputedStyle(element).getPropertyValue('background-image');
var re = /url\((['"])?(.*?)\1\)/gi;
var matches;
while ((matches = re.exec(prop)) !== null) {
    console.log(matches[2]);
}
于 2020-09-02T17:23:05.200 回答