jquery 反转 dom元素

12-02 1,833 views

例: <ul> <li>A</li> <li>B</li> <li>C</li> </ul> 需要变成: <ul> <li>C</li>...
阅读全文 0

jquery validate自定义验证规则

6-29 2,515 views

jQuery.validator.addMethod("check_user", function(value, element) { var check = /^[A-Za-z\s]+$/; //this.optional(element)如果元素...
阅读全文 0

jquery-fancybox JavaScript图片库,支持pc,响应式

4-06 2,182 views

官网地址 http://fancyapps.com/fancybox/3/ document:http://fancyapps.com/fancybox/3/docs/#usage github https://github.com/fancyapps/fancybox 兼容性 ...
阅读全文 0

jquery 瀑布流插件 masonry

4-04 2,861 views

github https://github.com/desandro/masonry Masonry Cascading grid layout library Masonry works by placing elements in optimal position based on a...
阅读全文 1

一款非常好用的jquery滚动条样式插件 jquery.nicescroll

12-25 2,088 views

github地址 demo 使用方法 //默认 $(".do-nicescrol").niceScroll(); // $(".do-nicescrol").niceScroll({ cursorcolor:"aquam...
阅读全文 0

一个好用的JS 提示信息插件 noty

4-29 15,106 views

Github: https://github.com/needim/noty new Noty({ text: 'NOTY - a dependency-free notification library!', animation: { o...
阅读全文 1

chartjs —— jquery柱状图插件

10-08 3,671 views

官网地址: http://www.chartjs.org 文档:http://www.chartjs.org/docs/latest/charts/bar.html CDN: https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2....
阅读全文 0

简单功能强大的jQuery图片剪裁插件Image Cropper

8-28 3,068 views

引入必要的js和css核心文件 <script src="/path/to/jquery.js"></script><!-- jQuery is required --> <link href="/path/to/cropper...
阅读全文 0

ckeditor内容和表单一起提交,ajax提交

8-14 2,736 views

在ajax提交表单之前执行这个方法 function updateContent() { for(instance in CKEDITOR.instances){ CKEDITOR.instances[instance].updateEleme...
阅读全文 0

jquery plupload 上传文件后清空上传队列

8-05 5,438 views

最近使用plupload 来上传图片,设置了一个假如当前图片大于10,就不能上传的条件,但是发现,假如这次传了11张,是不可以上传,但是下次只传一张,把之前的11...
阅读全文 0