jQuery是继prototype之后的又一个优秀的Javascript框架。它是由 John Resig 于 2006 年初创建的,它有助于简化 JavaScript™ 以及Ajax 编程。有人使用这样的一比喻来比较prototype和jQuery:prototype就像Java,而jQuery就像ruby. 它是一个简洁快速灵活的JavaScript框架,它能让你在你的网页上简单的操作文档、处理事件、实现特效并为Web页面添加Ajax交互。
Browsing the archives for the jQuery tag
jquery 轻松实现 双击编辑文本框
用jquery实现双色表格,鼠标移动到上面时,行变色~!
网上有很多关于jquery的checkbox全选,我也来做个,自己写的!
在IE和firefox下测试通过
http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
jquery自定义对话框实例jquery自定义对话框实例
Information
The second menu in this series using my javascript routine to write the IE5.5 and IE6 specific styles for us and monitor the mouse hover states.
As with the first dropdown menu, if you examine the stylesheet you will only see the li:hover styling.
This menu also styles the path taken through the menu so that it works in IE5.x and IE6 as well as IE7 and all other browsers. This is a little long winded but necessary as IE5.5 and IE6 do not understand the child selector.
Purpose Replicate Suckerfish Menus. Original Code $(document).ready(function(){ $(“#nav-one li”).hover( function(){ $(“ul”, this).fadeIn(“fast”); }, function() { } ); if (document.all) { $(“#nav-one li”).hoverClass (“sfHover”); } }); $.fn.hoverClass = function(c) { return this.each(function(){ $(this).hover( function() { $(this).addClass(c); }, function() { $(this).removeClass(c); } ); }); }; /* Code Highlighting Courtesy of Dean Edwards star-light http://dean.edwards.name/my/behaviors/#star-light.htc – with jQuery [...]
http://leandrovieira.com/projects/jquery/lightbox/
$(document).ready(function(){
$(“#nav-one li”).hover(
function(){ $(“ul”, this).fadeIn(“fast”); },
function() { }
);
if (document.all) {
$(“#nav-one li”).hoverClass (“sfHover”);
}
});