存档

文章标签 ‘jquery’

jquery ajax提交错误定义方法

2010年3月12日 云飞扬 没有评论

$.ajax({
..
success:function(json)
{
..
}
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});

分类: ajax, jquery 标签: ,

jQuery 1.4新增的jQuery.contains()

2010年3月10日 云飞扬 没有评论

Today I went out comp. it seems big dust is blowing,look closer is the snow.of course it diffierent of yesterday's
which called sleet. it means rain and snow togather.rain contains snow.Today I want's learn jquery.contains().
jQuery.contains( container, contained )
Returns: Boolean
sample :

分类: english, jquery 标签:

真快Jquery1.4.2出来了

2010年2月22日 云飞扬 没有评论

地址http://blog.jquery.com/2010/02/19/jquery-142-released/
好像出个delegate 委托函数吗?
官方举个例子,三个是等效的
$("table").delegate("td", "hover", function(){
$(this).toggleClass("hover");
});

分类: jquery 标签:

json在jquery1.4中不能运行的解决方法

2010年1月27日 云飞扬 2 条评论

因为jquery中有几个新特性非常需要比如has,于是用上1.4了,
但是有个小问题,原来的数据无法返回读出来,
排查了插件没有问题,看到1.4文档中说明,说1.4中对json格式更严格了,于是往这里找原因,
尝试下成功了!
简单记录,积少成多!

分类: ajax, jquery, json 标签: ,

Jquery 1.4中文文档在线阅读更新chm版下载

2010年1月26日 云飞扬 2 条评论

Jquery 1.4中文文档在线阅读
http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml
CHM版下载地址:http://jquery-api-zh-cn.googlecode.com/files/jQueryAPI-100204.zip

分类: jquery 标签:

jQuery 1.4新特性 jQuery.param

2010年1月22日 云飞扬 3 条评论

正需要此功能,用于ajax参数传递,例子如下

分类: jquery 标签: ,

jquery新版1.4出来了

2010年1月17日 云飞扬 没有评论

一觉睡醒,打开就jquery网站发现已经到1.4版本,新版本好像增加好多新的东西

http://api.jquery.com/category/version/1.4/

分类: jquery 标签:

ajax jquery开发常见错误总结

2010年1月14日 云飞扬 4 条评论

最近互联网发生好多事情,有关于域名,cn个人无法注册了,国外godaddy支持支付宝了,无数小站被clientHold了,几大著名网站也关停几天,现在基本已恢复。还有关于最近搜索引擎的,“百度被黑,谷歌可能退出中国”,昨天海地发生地震(非互联网)。回到正题ajax jquery开发常见错误总结如下:
1.ajax jquery发送
$.ajax({ type: "POST", url: "ajax/emailhand.ashx", data: "email=" + escape(email), success: function(msg) { alert(msg);} });
2.value 为val()

分类: ajax, jquery 标签: ,

意大利博客园和jquery tools工具

2009年12月20日 云飞扬 没有评论

今天从 cnblogs的ovERREd看到了意大利博客园,看到了一篇jquery工具的链接
http://blogs.ugidotnet.org/alessage/archive/2009/06/12/jquery-tools.aspx
记下此jquery tools工具和意大利博客园:http://blogs.ugidotnet.org
jquery tools工具:http://flowplayer.org/tools/index.html

ajax使用jquery加载文章实例源码

2009年12月18日 云飞扬 没有评论

最近要医院要照顾宝宝,开出生证明,落户等事,很久没写文章了,
这里给个完整例子帮助理解jQuery Ajax 全解析例子,另外本文例子无法在firfox正常显示,下次再解决这个问题

分类: ajax, jquery 标签: ,