Ultra light-weight user interface plugin in the spirit of jQuery UI, inspired by jQDnR plugin by Brice Burgess. The focus is on providing a light(er) weight alternative to the jQuery UI set of plugins.
Requires jQuery version 1.2.3+
最近一直在研读 jQuery 源码,初看源码一头雾水毫无头绪,真正静下心来细看写的真是精妙,让你感叹代码之美。 其结构明晰,高内聚、低耦合,兼具优秀的性能与便利的扩展性,在浏览器的兼容性(功能缺陷、渐进增强)优雅的处理能力以及 Ajax 等方面周到而强大的定制功能无不令人惊叹。 另外,阅读源码让我接触到了大量底层的知识。对原生JS 、框架设计、代码优化有了全新的认识,接下来
如果说用js来写瀑布流或者其他效果很麻烦,那么jQuery明显就是有了光明大道。 下面来看一下使用jQuery如何完成的 1.HTML代码: <div id="main"> <div class="pin"> <div class="box"> <img src="images/i1.jpg"> </div> </div> <div class="pin"> <div class="
JQUERY实现的小巧简洁的无限级树形菜单,可用于后台或前台侧栏菜单!兼容性也比较好。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/199
包装集总是面向集合的 我想这个理解起来很简单,被$()包装的JQuery对象总是以集合的形式出现.就算包装集中只有一个对象. <div id="a"></div> <div id="b"></div> <script type="text/javascript"> $("div").html("hi"); </scrip
<img class="imgPos" name="img" alt="" /> <div class="mask"></div> /*image enlargement*/ .imgPos { position: absolute; display: none; z-index: 1000000000;} .mask { display: none; z-index: 9
js和jQuery虽然在一定情况下能互相转化,但要遵循一定的原则标准 js转化成jQuery用工厂函数包装一下 $(); jQuery转化成js要用数组下标方式,get()方法获得。 <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(functio