我需要知道如何通过javascript或jquery创建一个带有“field”类的图像标记。谢谢!
答案 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);