我的计数器不工作,有人知道为什么吗?
var idVinyl = 1;
$(this.split(/<img.+?>/)).each(function()
{
$("#vinyl" + idVinyl +" p").html(this + " ");
idVinyl++;
console.log("test " + idVinyl+": " + this);
}
});