0

这是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; 不工作?哪里有问题 ?

4

1 回答 1

0
var IDCat=this.value;

应该

var IDCat=$(this).val();
于 2013-08-07T10:28:53.017 回答