gpt4 book ai didi

javascript - 语法错误: missing ; before statement with AJAX

转载 作者:行者123 更新时间:2023-12-02 19:22:54 25 4
gpt4 key购买 nike

我在执行 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);
});

});

最佳答案

我认为您想使用等号?

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

而不是

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

关于javascript - 语法错误: missing ; before statement with AJAX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12333468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com