Browsing the archives for the jQuery tag

jQuery技巧总结

in js框架

jQuery是继prototype之后的又一个优秀的Javascript框架。它是由 John Resig 于 2006 年初创建的,它有助于简化 JavaScript™ 以及Ajax 编程。有人使用这样的一比喻来比较prototype和jQuery:prototype就像Java,而jQuery就像ruby. 它是一个简洁快速灵活的JavaScript框架,它能让你在你的网页上简单的操作文档、处理事件、实现特效并为Web页面添加Ajax交互。

0 Comments

jquery 轻松实现 双击编辑文本框

in js框架

jquery 轻松实现 双击编辑文本框

0 Comments

用jquery实现双色表格,鼠标移动到上面时,行变色~!

in js框架

用jquery实现双色表格,鼠标移动到上面时,行变色~!

0 Comments

Jquery的checkbox全选,取消

in js框架

网上有很多关于jquery的checkbox全选,我也来做个,自己写的!
在IE和firefox下测试通过

0 Comments

jquery 树形菜单

in js框架

http://bassistance.de/jquery-plugins/jquery-plugin-treeview/

0 Comments

jquery自定义对话框实例

in 设计重构

jquery自定义对话框实例jquery自定义对话框实例

0 Comments

jquery 制作下拉菜单 Professional Dropdown

in js框架

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.

0 Comments

jQuery 制作的下拉菜单 SuckerFish Style

in js框架

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 [...]

0 Comments

jQuery lightBox plugin

in js框架

http://leandrovieira.com/projects/jquery/lightbox/

0 Comments

jquery下拉菜单特效演示

in js框架

$(document).ready(function(){
$(“#nav-one li”).hover(
function(){ $(“ul”, this).fadeIn(“fast”); },
function() { }
);
if (document.all) {
$(“#nav-one li”).hoverClass (“sfHover”);
}
});

0 Comments