我正在尝试为网络摄像头制作更新功能。到目前为止它做的是进行ajax调用并提供图像的Url。我有一些问题将结果(在图像加载后)绑定到dom元素(ccam)。
function update() {
$('#loading').show('fast');
$.ajax({
type: 'POST',
url: 'cam.php',
data: 'img=<? echo $cam_id; ?>',
timeout: 2000,
cache: false,
success: function(data) {
window.setTimeout(update, 20000);
$('#currcam').hide();
$('#daycam').show();
$('#loading').hide('fast');
$('#ccam')
.append(img)
.append(html);
// now show the image
$(img).fadeIn();
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
$("#loading").html('Timeout contacting server..');
window.setTimeout(update, 60000);
}
});
}
$(document).ready(update);
答案 0 :(得分:0)
在我回答你的问题之前,请说明这里发生了什么:
$('#ccam').append(img).append(html);
img
var中的内容以及html
var中的内容是什么?