使用jquery发送帖子并加载特定的选择器

时间:2012-11-21 09:25:55

标签: php jquery json post

我想用Jquery $ .POST()发布一个表单值并加载一个特定的选择器 我不知道怎么做可能与json或类似的东西

$.post('topic.php', {id: id}, function(data){
    $("#message").html(data);
    $("#message").hide();
    $("#message").slideDown(500); //Fade in the data given by the topic.php file
});

我只是想加载标题和描述而不是整页

我想在灯箱中检索这个标题和描述我该怎么办?

2 个答案:

答案 0 :(得分:1)

也许这会有所帮助:

$.post('topic.php', {id: id}, function(data){
    $("#message").html($(data).find("#your_dom_selector"));
    ...
}

答案 1 :(得分:0)

$.post('topic.php', {
    id: id
}, function(data) {
    $("#message")
        .html($(data).('attr', 'title'))
        .hide()
        .slideDown(500); //Fade in the data given by the topic.php file
});
return false;
});​