再谈jQuery跨任何域
跨域相关的文章老早写过几篇:
jquery url检测遇到的jquery跨域问题及JSONP的使用
PHP - 利用P3P实现跨域
HTTP和HTTPS跨域共享session解决办法
本文是对第一篇的实例补充。
js脚本
$.getJSON ('?callback=? &a=1&b=2', function(data) {if (typeof(data) == 'object') {
$.each(data,function(i,j){
// ...
});
}
});
服务端代码
2012-04-09 11:25:33阅读全文>>>
jquery ajax的async参数导致火狐浏览器闪屏
先提下关于jQuery的$.Ajax 的async的作用,
官方的解释是
async Boolean Default: trueBy default, all requests are sent asynchronous (e.g. this is set to true by default). If you need synchronous requests, set this option to false. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active.
async默认是true, 即为异步方式, $.Ajax执行后, 会继续执行ajax后面的脚步, 直到服务器端返回数据后, 触发$.Ajax里的success方法. 这时候执行的是两个线程.
我的出现闪屏的情况是:
$.ajax({
type: "post",
url: "index.php",
data: { },
async:false,
2012-04-06 11:15:09阅读全文>>>
JQuery和Prototype区别小结
jQuery使用得比较顺手也比较喜欢,不得已也要用Prototype,小小整理下区别。。
页面载入
2011-07-22 16:35:44阅读全文>>>
jQuery函数 - 左右抖动效果,用于提示
Wordpress博客后台登录输入错误的话登录窗口有左右抖动的效果。弄成jQuery函数方便调用(前提已载入jQuery包)
function shake(o){
var $panel = $("#"+o);
box_left = ($(window).width() - $panel.width()) / 2;
$panel.css({'left': box_left,'position':'absolute'});
for(var i=1; 4>=i; i++){
$panel.animate({left:box_left-(40-10*i)},50);
2011-05-13 13:50:52阅读全文>>>
jQuery 3D文字特效(备用)
源码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>jQuery 3D文字</title>
<style type="text/css">
body{
font-family: Arial, "MS Trebuchet", sans-serif;
background-color: #111;
}
#list{
margin:0 auto;
height:600px;
2011-01-26 21:10:21阅读全文>>>
解决jQuery插件Uploadify上传中文文件出现乱码的问题
jQuery.Uploadify是一个方便的jqyery文件上传插件,
今天项目需要拿来使用,
但是出现了个问题:上传中文文件的时候会出现乱码
通过一番研究,最终解决:
修改uploadify.php文件,
2010-09-30 13:16:24阅读全文>>>
使用jquery插件测试url链接是否有效及js ping url
jquery的ping插件://要用的需要明白代码及自己改些地方
(function($) {
$.fn.ping = function(options) {
var opts = $.extend({}, $.fn.ping.defaults, options);
var stime = new Date().getTime();
return this.each(function() {
var ping, requestTime, responseTime ;
var target = $(this);
function ping(){
$.ajax({url: opts.getUrl(target.html())+'/'+ Math.random() + '.html', //设置一个空的ajax请求
type: opts.type,
dataType: 'html',
timeout: opts.timeout,
beforeSend : function() {
requestTime = new Date().getTime();
},
complete : function() {
responseTime = new Date().getTime();
ping = Math.abs(reque
2010-07-06 16:18:56阅读全文>>>
jquery url检测遇到的jquery跨域问题及JSONP的使用
jsonp的ibm上的资料:
使 用 JSONP 实现跨域通信,第 1 部分: 结 合 JSONP 和 jQuery 快速构建强大的
跨 域限制的原因
跨域问题存在实际上源于浏览器的同源策略(same origin policy),简单讲,同源就是要求域名,协议,端口三者都一致;而同源策略就是指页面上的脚本不能访问非同源的资源(包括 HTTP响应和Cookie);
很多人会想到一个很熟悉的东西:document.domain