存档

文章标签 ‘jquery’

密码保护:微博1

2010年6月29日 云飞扬 查看留言请输入密码

无法提供任何摘要。这是一篇受保护的文章。

分类: c#, jquery, 私人 标签: ,

mark一个jquery confirm效果prompt插件

2010年3月31日 云飞扬 评论已被关闭

http://trentrichardson.com/Impromptu/index.php
想找个弹出confirm效果,感觉不错
其中一个A nice clean blue theme.官方有demo
$.prompt('Hello World!!',{
      buttons:{Ok:true,Cancel:false},
      prefix:'cleanblue'
})%

分类: jquery 标签: ,

mark一个jquery confirm插件

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

mark一个jquery confirm插件
http://nadiana.com/jquery-confirm-plugin

分类: jquery 标签: ,

mark一个jquery文本提示插件

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

mark一个jquery文本提示插件

http://demos.usejquery.com/ketchup-plugin/

分类: 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日 云飞扬 1 条评论

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

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

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

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

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日 云飞扬 没有评论

正需要此功能,用于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日 云飞扬 查看留言请输入密码

无法提供任何摘要。这是一篇受保护的文章。

分类: 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 标签: ,

jquery中innerHTML与html

2009年12月9日 云飞扬 评论已被关闭

其实jquery中没有innerHTML属性了,并且赋值不是如下操作 $("#id").html="值";
正确赋值有如下方法:
$(document).ready(function() {
$("#start").html("小孩出生了");
var result = "我做爸爸了";
$("#result").html(result);
$("#result").show();
});
完整例子源码

分类: jquery 标签: ,