你好朋友这是我的代码。
$.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返回语法错误。
请帮忙。
答案 0 :(得分:3)
试试这个
'user_id': '<?php echo $value = isset($_GET['user_id']) ? $_GET['user_id'] : ""; ?>'
如果未设置PHP
,则需要将$_GET['user_id']
代码包含在引号内以避免语法错误。