js给php传值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js给php传值相关的知识,希望对你有一定的参考价值。
//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传值的主要内容,如果未能解决你的问题,请参考以下文章