跨域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提交方式就不需要进行编码转换