weixin_33686714 2016-09-27 11:57 采纳率: 0%
浏览 90

Ajax更改PHP变量

I've got this variable $type and I want it to be month or year. It should be changed by pressing a div.

I've tried creating an onclick event with an ajax call.

The ajax call and the variable are in the same script (index.php)

Inside the onclick function:

var curr_class = $(this).attr('class');


$.ajax({
    type: "POST",
    url: "index.php",
    data: {
        type: curr_class
    },
    dataType: 'text',
    success: function(data) {
        // Test what is returned from the server
        alert(data);
    }
});

But the alert returns the whole html page. When I console.log the data (create a var data = { type:curr_class }) and console.log *that data* it returnstype = month` (which is correct)

while I just want it to return month or year

So on top of the page I can call

if(empty($_POST['type'])){
     $type = 'month';
} else {
     $type = $_POST['type'];
}

and change the PHP variable so I can use it in the rest of my script.

But how can I accomplish this?

With kind regards,

  • 写回答

2条回答 默认 最新

  • weixin_33698823 2016-09-27 12:14
    关注

    as you are sending request to the same page so as a result full page is return .You will have to send it to another page and from that page return the type variable

    if(empty($_POST['type'])){
     $type = 'month';
     } else {
       $type = $_POST['type'];
       echo $type;
    

    keep this code in separate file and make an ajax call to that page

    评论

报告相同问题?

悬赏问题

  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services