0

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
});

ページ全体ではなく、タイトルと説明をロードしたいだけです

このタイトルと説明をライトボックスで取得したいのですが、どうすればよいですか?

4

2 に答える 2

1

多分これは役立つでしょう:

$.post('topic.php', {id: id}, function(data){
    $("#message").html($(data).find("#your_dom_selector"));
    ...
}
于 2012-11-21T09:29:06.573 に答える
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;
});​
于 2012-11-21T09:30:15.127 に答える