ID「frmCmt」のフォームを含むhtmlページがあります。このフォームを他のドキュメントに表示したいだけです。jQuery .filter()を使用していますが、現在は機能してページ全体を表示しています。
私のjQueryコード:
function showCommentForm(postID){
$.ajax({
type: "GET",
cache: true,
url: "http://mysite.com/post/comment/"+postID,
success:(function(msg){
$("#commentContainer"+postID).html(msg).filter("#frmCmt") ;
return false;
})});
助けてください。