0
我有以下Jquery函數應該將memberID作爲變量。我想在我的add_comment.php文件中用$memberID = $_REQUEST['memberID']
捕獲它,但它返回null。Jquery .post()方法問題
$('a.comment').die("click").live("click", function(e){
var getpID = $(this).parent().attr('id').replace('commentBox-','');
var comment_text = $("#commentMark-"+getpID).val();
if(comment_text != "Write a comment...")
{
$.post("lib/actions/add_comment.php?comment_text="
+comment_text+"&post_id="+getpID,{ memberID : 5
}, function(response){
$('#CommentPosted'+getpID).append($(response).fadeIn('slow'));
$("#commentMark-"+getpID).val("Write a comment...");
});
}
});
你可以通過轉義'comment_text'來嘗試嗎? – peakit 2011-02-09 18:54:13