码迷,mamicode.com
首页 > Web开发 > 详细

js给php传值

时间:2016-09-11 18:40:29      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

    //ajax传值
                                var str= JSON.stringify(arr1);//数组转string
                                //alert(typeof(str));
                                $.ajax({
                                  url:‘test.php‘
                                  ,type:‘POST‘
                                  ,data:{str:str}
                                  ,success:function(rst){alert(‘接受成功!‘);}
                                  ,error:function(xhr){alert(‘php页面有错误!‘+xhr.responseText);}
                              });

 

js给php传值

标签:

原文地址:http://www.cnblogs.com/h-g-f-s123/p/5862192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!