如何通过javascript添加带有属性值的img标签?

时间:2015-03-24 00:58:47

标签: javascript jquery html dom

我需要知道如何通过javascript或jquery创建一个带有“field”类的图像标记。谢谢!

2 个答案:

答案 0 :(得分:2)

您可以使用createElement

var img = document.createElement('img');
img.className = 'field';
//set any other properties you want
//add it to the dom

或使用jQuery

var $img = $('img', {
    'class': 'field' //you can add more properties
});
//Add it to the dom

答案 1 :(得分:1)

var img = '<img src="my.jpg" class="field" />';    
$('body').append(img);