ajax --- jquery + php 代码整理

前端之家收集整理的这篇文章主要介绍了ajax --- jquery + php 代码整理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ajax — jquery + PHP 代码整理
实际的项目中很多地方用到了ajax
前端HTML代码js 部分
var url = “{:U(‘send_wish’)}”; //请求地址

var a = {
            to_name:_toname,from_name:_fromname,wish_words:_speek,from_corp:_fromcorp,pic_id:_picid
        };
        var jsonstr = JSON.stringify(a);    //封装为json格式


        $.ajax({
            url:url,type:'POST',//请求类型
            data:{jsonstr:jsonstr},success:function(res){
                //成功后处理
                window.location.href = res;
            },error:function(){
            //失败后处理
                alert('提交失败!');
            }
        });

后台PHP代码
if(IS_AJAX){ //判断ajax请求
datajson=I(jsonstr); data = json_decode($data_json,true); //json转 数组 }

原文链接:https://www.f2er.com/ajax/163729.html

猜你在找的Ajax相关文章