我正在尝试动态地在列表视图中获取图像图标。如果我有5个图像,如0.png到4.png,我在列表视图中有5个列表。在列表名称之前,我想使用jquery动态地在列表视图中将图像显示为图标。
$("#list").append('<li><a href="#chapter" id="' + order + '"><img src="icons/"' + imageurl + ' id="imageURL"/>' + section + ' </a> </li>');
先谢谢。
答案 0 :(得分:0)
我得到了解决方案..用于在列表视图中动态创建图像..
$('#').load(file, function (data) {
var txt = $(data).find('p').text();
var image = $(data).find('img');
var pic = $(data).find('img').attr('src');
var picture = '<img src="'+ pic +'" style="width:100px;height:100px;"/>';
$("#content_list").append('<li><a href="#" class="style1" file="' + file + '">'+ picture +'<h2>' + content + ' </h2><p class="description">' + txt + '</p></a></li> ');