时间:2021-07-01 10:21:17 帮助过:38人阅读
jQuery.ajax({ type: "post", url: "dialog.php?a=sift", data: {"cid":n,"data":d}, dataType: "json", success: function(data,textStatus){ if(data.res==0){ alert(data.msg); }else{ /******成功后******/ } } });
jQuery.ajax({ type: "post", url: "dialog.php?a=sift", data: {"cid":n,"d}, dataType: "json", success: function(data,textStatus){ if(data.res==0){ alert(data.msg); }else{ /******成功后******/ } } });
jQuery.ajax({ type: "post", url: "dialog.php?a=sift", data: {"cid":n,"data":d}, dataType: "json", success: function(data,textStatus){ if(data.res==0){ alert(data.msg); }else{ /******成功后******/ } } });
1、当图片的像素总数超过 GD 预设的范围时
不过没有看到过有关上限的说明,以前用 php4 时好像有 1024*768 的上限。
不过你可以自己试验一下
ini_set 可以动态设置允许修改的变量
2、{"cid":n,"data":d}
如果 d = {"cid":n,"data":d} 这样的话
肯定是要“堆栈溢出”的,因为递归了
jq 是要把 js 对象构造成字符串后,才发送的
明白了。谢谢版主。