您还必须删除当前附加的图像。这是带有单击事件和图像的,而不是附加标记的。
$('#list li a').click(function () { var url = $(this).attr('href'), image = new Image(); image.src = url; image.onload = function () { $('#image-holder').empty().append(image); }; image.onerror = function () { $('#image-holder').empty().html('That image is not available.'); } $('#image-holder').empty().html('Loading...'); return false;});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)