这是ajax请求
<script type="text/javascript">
{literal}
$(document).ready(function(){
$("#S1").change(function()
{
var IDCat=this.value;
alert(IDCat);
$.ajax({
type: "GET",
url: 'product_modify.php',
data: {IDCat:IDCat},
success: function(data)
{
alert(data);
alert("success");
}
});
});
});
{/literal}
</script>
这是php代码
if(isset($_GET['IDCat'])){
$idc= $_GET['IDCat'];
echo $idc;
}
有问题echo $ idc;不起作用?问题出在哪里?
答案 0 :(得分:0)
var IDCat=this.value;
应该是
var IDCat=$(this).val();