方法一:
在放置新图像之前,您应该清除以前的图像。
$(document).ready(function () {
setInterval(load, 5000);
var imgPaht = "http://www.radiobaiano.it/webcam.jpg";
function load() {
console.log("inside load");
$('<img src="'+ imgPaht+'?'+new Date().getTime() +'">').load(function () {
// use this only if you have the new image to be in #webcam
$('#webcam').empty();
$(this).width(270).height(250).appendTo('#webcam');
});
}
});
方法二:
$(document).ready(function () {
setInterval(load, 5000);
var imgPaht = "http://www.radiobaiano.it/webcam.jpg";
function load() {
$("#imageId").remove();
$('<img id="imageId" src="'+ imgPaht+'?'+new Date().getTime() +'">').load(function () {
$(this).width(270).height(250).appendTo('#webcam');
});
}
});
方法三:
$(document).ready(function () {
setInterval(load, 5000);
var imgPaht = "http://www.radiobaiano.it/webcam.jpg";
function load() {
if($('#webcam img').length == 0)
{
$('<img id="imageId" src="'+ imgPaht+'?'+new Date().getTime() +'">').load(function () {
// use this only if you have the new image to be in #webcam
$('#webcam').empty();
$(this).width(270).height(250).appendTo('#webcam');
});
}
else
{
$('#webcam img').attr('src',imgPaht);
}
});