获取背景图片网址值

时间:2014-07-27 21:21:20

标签: javascript html5 url background-image

我有7个div,每个div都有不同的背景图像,我需要在html中获取内联传递的每个背景图像的url,有人可以帮我吗?

我尝试了不同的方法,但没有成功:(

1 个答案:

答案 0 :(得分:1)

http://jsfiddle.net/e46bf/

使用.each循环遍历所有div,以获取背景图像。

$("div").each(
    function(index) {
        var thisUrl = $(this).css("backgroundImage");
        var content = $("p").html(); // current content
        $("p").html(content+" "+thisUrl);
    }
);