ajax跨域解决方法

巴扎黑
发布: 2016-11-23 15:55:26
原创
1833人浏览过

跨域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 
内容为: 

<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')进行转换,而当遇到带有火星文字时,如:♡叮叮当..叮叮当..Merry Christmas!♡,前者会去掉特殊字符,后者特殊字符会变成问号,所以采用ajaxFormPost提交方式就不需要进行编码转换

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号