4

我想显示下面 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){
}
4

4 回答 4

5

这取决于您的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'));

参考资料

于 2012-04-28T09:31:26.410 回答
1

内部成功,请执行以下操作:

success: function(responseText) {
    $("#target").text(responseText);
},
于 2012-04-28T09:29:11.183 回答
0

利用您拥有的空的“成功”处理程序函数。

于 2012-04-28T09:27:39.670 回答
0

试试这个:

success: function(responseText) {
    $("#update-div").text(responseText.d);
},

您可以从这里获得更多信息

于 2012-04-28T09:31:09.783 回答