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

    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘