0

我在执行 ajax 请求时遇到了这个错误,并且在查看后如果我根本找不到问题。这是下面的代码。

$('#post_submit').click(function() {

var poster_id = <?php echo $session_user_id; ?>;
//firebug syntax error shows the line below is the problem
var profile_user_id: <?php echo $user_id; ?>;
var post = $('#post').val();
$.post('ajax_submit_post.php', 
    {
        profile_user_id: profile_user_id,
        poster_id: poster_id,
        comment_type : comment_type,
        post: post      
    }, 
    function () {
        $('#status').append('<li class="hide">Posted</li>').hide(1000); 
    }); 

});
4

1 回答 1

2

我想你的意思是使用等号?

var profile_user_id = <?php echo $user_id; ?>;

代替

var profile_user_id: <?php echo $user_id; ?>;
于 2012-09-08T18:48:07.077 回答