교차 도메인 POST
(function($){ window.isIE6=$.browser.msie && jQuery.browser.version==6.0; jQuery.extend({ ajaxFormNums:0, ajaxFormPost:function(sURL, datas, callBack,domains){/*[sURL=提交地址, datas=要提交的数据对像, callBack=回 调,domain=域]*/ domains=domains||'51.com'; var on='TEMP_POST_'+$.ajaxFormNums; var of=[]; of.push('<div id="'+on+'_DIV" style="position:absolute;z-index:10;top:-20000100px;"><iframe id="'+on+'_IFRAME" name="'+on+'_IFRAME" height="1" width="1" src="http://friend.51.com/ajax_blank.php?d='+encodeURIComponent (domains)+'" frameborder="0" border="0" scrolling="no"></iframe><form id="'+on+'_FORM" name="'+on+'_FORM" method="post" action="'+sURL+'" target="'+on+'_IFRAME">'); $.each(datas,function(i,n){of.push('<textarea name="'+i+'" style="width:1px;height:1px;">'+n+'</textarea>');}); of.push('<input type="submit" value="Submit" name="b1" style="width:1px;height:1px;" /></form></div>'); $(document.body).append(of.join(''))//.insertAdjacentHTML("beforeEnd", of.join('')); //document.body.insertAdjacentHTML("beforeEnd", of.join('')); of=null; $('#'+on+'_IFRAME').bind('load',function(){ if(!$(this).attr('summary')) { $(this).attr('summary',1); $('#'+on+'_FORM').submit(); return false; } if(isIE6) { if($.isFunction(callBack)) { callBack(window.name); } else { eval(callBack+'(window.name)'); } } else { var oIf= this.id; if($.isFunction(callBack)) { if(navigator.userAgent.toLowerCase().indexOf('se 2.x')>-1) { callBack(frames[oIf].document.body.innerText); } else { callBack(frames[oIf].document.body.innerHTML); } } else { eval(callBack+'(frames[oIf].document.body.innerHTML)'); } } window.setTimeout(function(){$('#'+on+'_DIV').remove();},1); }); $.ajaxFormNums++; } }); })(jQuery);
호출 방법:
$.ajaxFormPost('http://localhost/api.php?act=say', {cont:cont}, function(data){ alert(data); });
웹사이트 루트 디렉토리에 ajax_blank.php 파일을 생성합니다.
컨텐츠. is:
<html><head><title>51.com</title><script type="text/javascript">document.domain="51.com";</script></head><body></body></html>
그리고 호출 페이지에 js를 추가하세요:
document.domain='51.com'
php 부분
$result=-1; echo "<script>if(!/msie 6/i.test(navigator.userAgent)){document.domain='51.com';}else{parent.name='$result';}</script>$result";
도메인 간 GET
$.getJSON("http://localhost/api.php?callback=?",{receiver:receiver},function(data){ alert(data.info); })
php 처리 부분:
$ret['info'] = iconv("GBK", "UTF-8", "不存在该用户"); $result = json_encode($ret); echo request_check($_GET['callback']).'('.$result.')'; $_GET['callback']需处理一下,防止rss攻击 function request_check($post){ if(!get_magic_quotes_gpc()) // 判断magic_quotes_gpc是否为打开 { $post = addslashes($post); // 进行magic_quotes_gpc没有打开的情况对提交数据的过滤 } //$post = str_replace("_", "\_", $post); // 把 '_'过滤掉 //$post = str_replace("%", "\%", $post); // 把' % '过滤掉 $post = nl2br($post); // 回车转换 $post= htmlspecialchars($post, ENT_QUOTES); // html标记转换 return $post; }
ie6에서 jsonp 반환 비실행에 대한 해결 방법
php 반환 헤더에
header('cache-control:no-cache;'); header('Content-Encoding: plain');
을 추가하고 js 트리거에 return false를 추가합니다. 버튼; ie6에서 ajax 중단 문제 해결
ajax에서 제출한 데이터는 utf8 형식입니다. PHP는 일반적으로 iconv("utf-8", "gbk//IGNORE", $str) 또는 mb_convert_encoding($value, ' gbk', 'utf-8')을 사용하여 변환합니다. 그리고 다음과 같은 화성 문자가 포함된 단어를 만날 때: ♡ 징글벨... 징글벨... 메리 크리스마스! ♡ 전자는 특수 문자를 제거하고 후자는 특수 문자를 물음표로 변환하므로 ajaxFormPost 제출 방법을 사용하면 인코딩 변환이 필요하지 않습니다