我有一个 html 页面,其中包含一个 id 为“frmCmt”的表单,我只想在其他文档中显示这个表单,我使用 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;
})});
请帮忙。