你好朋友这是我的代码。
$.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 返回语法错误。
请帮忙。