ajax读取图片的路径问题

前端之家收集整理的这篇文章主要介绍了ajax读取图片的路径问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$.ajax({

type: 'get',

url: 'json/beautylist.json','Microsoft YaHei';"> success: function (data) {

//封装add函数用以添加数据

function add(obj,index) {

for (var i = 0; i < data[index].productList.length; i++) {

obj.append('<dl>' +

'<dt><span></span><a href="#"><img src=' + data[index].productList[i].imgUrl + '/></a></dt>' +

'<dd class="price">' + data[index].productList[i].price + '<span>' + data[index].productList[i].oldprice + '</span></dd>' +

'<dd>'+data[index].productList[i].name+'</dd>'+
'<dd>'+data[index].productList[i].des+'</dd>'+
'<dd><span></span><ahref="#"><imgsrc="images/addcart_07.jpg"/></a></dd>'+
'</dl>');
}
}
//添加数据
add($list1Box,0);
add($list2Box,1);
add($list3Box,2);
add($list4Box,3);
add($list5Box,4);
add($list6Box,5);
add($list7Box,6);
}

}

此时,图片会读不出来,只需在<img>标签的结尾部分 "/>"中间加个空格变为 "/ >"即可解决问题

原文链接:https://www.f2er.com/ajax/162070.html

猜你在找的Ajax相关文章