这是我的代码:
$.ajax({
type: "POST",
url: "[Pending moderation]; + "&user=kprecise&api_key=5475f6c59da195581488fad4c596d9b7&format=json",
dataType:'jsonp',
success: function (data) {
var lovetracks = data.tracks.track;
for (x=0; x < 7; x++) {
$("#loved").append("<img src=" + lovetracks[x].image[3]['#text'] + " width='100' height='100' />");
}
}
});
HTML:
<div class="owl-carousel owl-theme single-slider">
<div id="loved" style="width:300px;height:300px;" class="item"> </div>
<div id="loved" style="width:300px;height:300px;" class="item"> </div>
<div id="loved" style="width:300px;height:300px;" class="item"> </div>
</div>
我尝试将外观设置为更高的数字,但不管它只提供1首曲目而不是其他曲目?