Home  >  Article  >  Backend Development  >  如何把jquery中的变量赋值给php里。试了半天都不行。

如何把jquery中的变量赋值给php里。试了半天都不行。

WBOY
WBOYOriginal
2016-06-23 13:33:481569browse

 $('.sendj').click(function(){
   //var len = $("#group span").size();//获取span标签的个数
   var arr = [];
   for(var index = 0; index     arr[index] = index;
   }
   var a_inter=[];
   $.each(arr, function(i){//循环得到不同的id的值
   var idValue = $("li.selected").eq(i).attr("id");
   if(idValue != ''){
   a_inter[i]=idValue;
   }
   });
   d=a_inter.toString();//将数组变为字符串

   $.post("getselect.php",{selectdata:d},function(data){
  
   });
   });
就是这个d。


回复讨论(解决方案)

$.post("getselect.php",{selectdata:d},function(data).....
你这是提交

$.post("getselect.php",{selectdata:d},function(data) {  alert(data);});

getselect.php
<?phpecho $_POST['selectdata'];

getselect.php  需要用   $_POST['selectdata']; 来接收post的参数 post参数的name应该是selectdata

弄好了,好像是环境的问题。折腾一天。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn