设置图像作为图容器的背景

时间:2014-05-23 05:49:22

标签: jquery html html5

我想使用jquery动态地将src-tag中的图像设置为图形容器的背景。

<figure><img class="cam" id="c125228" src="http://www.adamelloski.com/images/ImportAutomatico/WebCam/tonale.jpg" alt="Passo Tonale 1883m" /><figcaption>Passo Tonale 1883m</figcaption></figure>

1 个答案:

答案 0 :(得分:1)

你可以这样做:

$(document).ready(function(){

var source = $("img.cam").attr("src");

$("img.cam").closest("figure").css("background-image","url("+source+")");

    })

FIDDLE DEMO