jQuery
ht576475012
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Jquery
http://www.jzxue.com/special/jQuerycongrumendaojinjijiaocheng_2100.html jquery 选择器大全 http://ruirui516888.iteye.com/blog/1554985#comments jQuery each方法 http://blog.youkuaiyun.com/yucf1988/article/detai...2012-06-11 11:39:34 · 101 阅读 · 0 评论 -
Good jquery summary website
http://www.cnblogs.com/greatxj/articles/2260357.html http://www.w3cmm.com/category/javascript http://www.oschina.net/code/snippet_729436_13564原创 2013-07-29 17:52:20 · 107 阅读 · 0 评论 -
JQuery的attr 与 val区别
.attr(attributeName) attributeName:需要获取属性的名称。 获取匹配集中第一个元素的属性值。1.6中attr返回属性的值为undefined,如果没有设置(set)。另外,.attr不应该在普通对象、数组(array)、窗口(window)或者文档中(document)。如果需要获取或者设置DOM属性,则应该使用.prop()方法。 使用....原创 2013-01-10 12:04:53 · 123 阅读 · 0 评论 -
jquery
jquery获取select选择的文本与值 获取select : 获取select 选中的 text : $("#ddlregtype").find("option:selected").text(); 获取select选中的 value: $("#ddlregtype ").val(); 获取select选中的索引: $("#ddlregtype "...原创 2013-03-14 16:19:40 · 89 阅读 · 0 评论 -
比较好的jquery 请求action加载select的例子
http://chenyunhong.iteye.com/blog/784551 /** * 查询检测记录(异步请求) * @return */ public void find(){ HttpServletResponse response = ServletActionContext.getResponse(); HttpServletRequest request = Se...原创 2013-03-10 15:18:49 · 110 阅读 · 0 评论 -
jquery select option操作
select清空代码 $("#charcity").empty();也可以清空后增加一个默认值 $('#selectid').empty().append( $("这里放默认值") ); 其它操作 1. $("#select_id").append("text"); //为select追加一个option(下拉项) 2. $("#select_id").prepend(...原创 2013-03-10 15:10:08 · 163 阅读 · 0 评论 -
jQuery Select操作大集合
jQuery获取Select选择的Text和Value: http://developer.51cto.com/art/201204/332706.htm 语法解释: $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 var checkText=$("#select_id").fi...原创 2013-03-10 15:04:46 · 113 阅读 · 0 评论 -
jQuery进行异步加载(2)
http://book.51cto.com/art/200809/91203.htm原创 2013-03-08 21:56:47 · 115 阅读 · 0 评论 -
jquery异步请求实例
1、用ajax jsp代码如下: $.ajax({ type:"get", dataType:"json", url:"actionSmUser.do?method=getUserMsgByUserId", data:"userId="+userId, ...原创 2013-03-08 21:11:19 · 154 阅读 · 0 评论 -
jQuery插件FullCalendar日程表实现可扩展Google日历功能
http://www.cnblogs.com/shihao/archive/2012/01/16/2323660.html jQuery日历FullCalendar插件是一个非常不错的日历工具,可用于制作日程表或计划安排等,可扩展Google日历功能,制作个性化的日程表,同时可绑定点击事件或拖动事件,使用非常方便。 jQuery插件FullCalendar在线实例FullCalenda...原创 2013-03-08 11:12:48 · 147 阅读 · 0 评论 -
22个非常详细的jQuery动画教程
http://news.cnblogs.com/n/113662/ 下面介绍的这22个jQuery动画教程都非常详细,能够帮您创造出意想不到的效果。 1) Create a Funky Parallax Background Effect Using jQuery 2) Crafting an Animated Postcard with jQuery ...原创 2013-02-26 20:00:31 · 174 阅读 · 0 评论
分享