1. 程式人生 > >ajax在同一個頁面獲取Post的資料

ajax在同一個頁面獲取Post的資料

<?php

if($_POST['act'] == 'get'){
   $action = 2;
 
   if($action == 2){
       $is_gz = 0;
   }else{
       $is_gz = 1;
   }

   echo $is_gz;
   exit;  
}

?>
<html>
<head>
<script src="jquery-1.11.1.min.js" type="text/javascript"></script>
</head>
<body>

<script>
$.post(location.href,{act:'get',action:2},function(d,s){
    //alert(22);
    if(d == 0){
        alert(11);
    }
});

</script>
</body>
</html>