jQuery Recipes Your Mom Should Know
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/AllThingsSmitty/jquery-your-mom-should-know
软件介绍
jQuery-Recipes-Your-Mom-Should-Know 是一组简单的 jQuery 片段列表,简单到你妈都能搞懂。它有以下功能:
回到顶层按钮
预载入图像
图像加载后检查
自动修复破损图像
悬停切换类
禁用输入字段
停止链接的加载
简单的手风琴
两个同样高度的 Div
示例代码:
$.preloadImages = function () { for (var i = 0; i < arguments.length; i++) {
$('<img>').attr('src', arguments[i]);
}
};
$.preloadImages('img/hover1.png', 'img/hover2.png');