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请求