2

我正在尝试动态获取列表视图中的图像图标。如果我有 5 个图像,例如 0.png 到 4.png,并且我在列表视图中有 5 个列表。在列表名称之前,我想使用 jquery 动态地将图像显示为列表视图中的图标。

$("#list").append('<li><a href="#chapter" id="' + order + '"><img src="icons/"' + imageurl + ' id="imageURL"/>' + section + '  </a> </li>');

提前致谢。

4

1 回答 1

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> ');
于 2013-06-24T11:16:16.797 回答