0

你好朋友这是我的代码。

$.post("submit_investorform.php",{'flage':'firstOverviewsubmit','comname':comaname,'amoutwisr':amoutwisr,'user_id':<?php echo $value = isset($_GET['user_id']) ?  $_GET['user_id'] : ""; ?>},function(result){
    if(result.trim() == 'Insert'){
        $(".noterror").html("Record Insert Successfully");
        $(".noterror").show();
        return false;
    }else if(result.trim() == 'error'){
        $(".errordisplay").html("Something was Wrong Please Try Again");
        $(".errordisplay").show();
        return false;
    }else if(result.trim() == "update"){
        $(".noterror").html("Record Updated Successfully");
        $(".noterror").show();
        return false;
    }

});

我想要设置 user_id 然后发送到 post 请求,否则它发送空白。但是 jQuery 返回语法错误。

请帮忙。

4

1 回答 1

3

尝试这个

'user_id': '<?php echo $value = isset($_GET['user_id']) ?  $_GET['user_id'] : ""; ?>'

如果未设置,您需要将PHP代码用引号括起来以避免语法错误。$_GET['user_id']

于 2013-10-30T04:52:46.243 回答