我想显示下面 ajax 函数对 dom 中的 div 的响应(更新 div)。在不使用繁重的插件的情况下如何做到这一点。
url: 'http://dowmian.com/xs1/getcam.php',
type: 'GET',
data: {id: <?php echo $cam_id; ?>},
success: function(responseText){
},
error: function(responseText){
}
我想显示下面 ajax 函数对 dom 中的 div 的响应(更新 div)。在不使用繁重的插件的情况下如何做到这一点。
url: 'http://dowmian.com/xs1/getcam.php',
type: 'GET',
data: {id: <?php echo $cam_id; ?>},
success: function(responseText){
},
error: function(responseText){
}
这取决于您的getcam.php
函数的返回值,但您可能正在寻找该html()
函数:
$.ajax({
url: 'http://dowmian.com/xs1/getcam.php',
type: 'GET',
data: {id: <?php echo $cam_id; ?>},
success: function(responseText){
$('#update-div').html(responseText);
},
error: function(responseText){
}
});
如果你想#update-div
动态追加,就像在 ajax 调用之前一样,你可以这样做append()
:
$('.container').append($('<div/>').attr('id','update-div'));
参考资料:
内部成功,请执行以下操作:
success: function(responseText) {
$("#target").text(responseText);
},
利用您拥有的空的“成功”处理程序函数。