0.0.7 • Published 6 years ago

jquery-utils v0.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

第一样例:

安装
npm i jquery-utils
添加依赖
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="node_modules/jquery-utils/$utils.js"></script>
样式
    .yellow {
        top: 20px;
        left: 50px;
        width: 100px;
        height: 100px;
        border: 10px solid black;
        position: absolute;
        background: yellow;
    }
html
<div >
    <div class="yellow"></div>
</div>
设置元素自动居中
 $('.yellow').autoCenter();
JQuery对象集遍历JQuery对象
    $("li").forE(function (el, i) {
        console.log(el);//每个li的JQuery对象
        console.log(i);//索引
    })
0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.1

6 years ago