
jquery
iteye_12650
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Jquery取得多选框的val()和text()示例
[code="html"] Playground $(function(){ // }) number 1 number 2 number 3 number 4 number...原创 2010-01-27 17:13:35 · 280 阅读 · 0 评论 -
upload and json
jquery submit serialized formhttp://www.wangyexx.com/jquery/jc/1009.html1. $("#form1").serialize(); // e.g. a=bob%3Dblog&b=1&c=1 autoencoding2. $("#form1").serializeArray(); return json, php: ...原创 2012-08-30 16:09:03 · 134 阅读 · 0 评论 -
superfish backup
[code="java"]/* jquery.event.special.hover v1.0 Three Dub Media */(function($){$.fn._hover=$.fn.hover;$.fn.hover=function(fn1,fn2,fn3){if(fn3)this.bind('hoverstart',fn1);if(fn2)this.bind('hovere...原创 2012-07-17 14:10:23 · 148 阅读 · 0 评论 -
jquery select demo
[code="html"]test $(document).ready(function(){$("input[name=radioBtn1]").click(function(){var val = $("input[name=gender][checked]").val();alert(val);});$("input[name=rad...原创 2011-02-24 12:15:11 · 117 阅读 · 0 评论 -
jquery以隐藏显示部分表单来保持选项的值
回“怪吧”网友[quote]大家好 我现在遇到这样一个问题:在一个列表页面,我选中其中的几项,当点击下一页的时候我希望上一页的被选项还是选中 在不和后台进行交互的情况下 如何将值保存在jsp页面中 当返回上一页的时候那几项仍然被选中 谢谢这个怎么实现[/quote][code="html"] Playground ...原创 2010-07-15 15:36:06 · 210 阅读 · 0 评论 -
Ajax codes for seabook
codes for seabook1. ajax test[code="java"]ajax test $(function(){ $("input").click(function(){ dom = $(this).parent().siblings(".data"); uid = $(this).pare...2011-09-05 11:01:48 · 97 阅读 · 0 评论 -
fix the jquery multiple hover animations
1. use hover or mouseenter + mouseleave2. use stop(true, true) to Stop the currently-running animation on the matched elements. (.stop( [clearQueue] [, jumpToEnd] ))[code="javascript"]$(do...2011-12-26 17:46:47 · 82 阅读 · 0 评论 -
jquery plugin datepicker and timepicker
download jquery ui - core, widget, mouse, slider, datepicker and jquery.timepicker.js v0.9.5 Trent Richardson[code="html"] Reservations Date / Time * / ...原创 2011-06-29 15:19:16 · 132 阅读 · 0 评论 -
jquery plugin easyvalidate
my jquery plugin easyvalidate1. short enough2. easy to use[code="java"]/* jquery.easyvalidate.js v1.1 Bob Zhu */$.extend({easyvalidate:{checkError:function(dom){if(dom.find(".error")...2011-06-29 14:52:51 · 133 阅读 · 0 评论 -
pieces of js codes
jQuery[code="java"]$('#demo')['click'](function(){ ...});// equals to$('#demo').click(function(){ ...});[/code]------------[code="html"][/code][code="html"] 选择报告 ...2010-03-05 12:46:15 · 165 阅读 · 0 评论 -
jquery以Jsonp方式跨域获取json配合php示例
服务器端[code="php"]需跨域调取的url假设为:http://www.1ong1.com/bbtest/json.php返回:({ "TotalCount":1,"Rows":[ { "vusername":"zycbob","CompanyName":"BV Ltd,.","UcofcName":"集团公司&原创 2010-02-05 11:23:44 · 127 阅读 · 0 评论 -
Code Snippet - ctrl + i in javascript
[code="javascript"] var ctrlKey = false; $(document).bind('keydown',function(event){ if(event.keyCode == 17) { ctrlKey = true; } if (ctrlKey & event.keyCode == 73) { a...原创 2013-02-25 11:39:11 · 149 阅读 · 0 评论