<p>我用这篇文章来理一理如何用js去实现封装jQuery的简单方法。</p>
<p>本文js实现了下面jquery的几种方法,我将它分为8个小目标</p>
<ul>
<li>实现$(".box1").click( )方法</li>
<li>实现$("div").click( )方法</li>
<li>考虑$( )中参数的三种情况</li>
<li>实现jq中的on方法</li>
<li>实现链式操作</li>
<li>实现jq中的eq方法</li>
<li>实现jq中的end方法</li>
<li>实现jq中的css方法<br>
</li>
</ul>
<p>有不正确的地方还望大家在评论区指出来,谢谢啦。</p>
<h2>1. 实现$(".box1").click( )方法<br>
</h2>
<p>首先,我们定第一个小目标,就是如何一步一步去实现下方jQuery代码的功能。</p>
<div class="blockcode">
<pre class="brush:js;">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
//同一个文件下操作的话,后面记得删除下面引入的cdn
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.0/jquery.min.js"></script>
<style> .box1 {
width: 100px;
height: 100px;
background: red;
} </style>
</head>
<body>
<div class="box1"></div>
</body>
<script> $(".box1").click(()=>{
console.log(456);
}) </script>
</html>
复制代码 </pre>
</div>
<div class="blockcode">
<pre class="brush:js;">
$(".box1").click(()=>{
console.log(456);
})</pre>
</div>
<p>好了,言归正传,我们来分析上面jQuery的代码。</p>
<ul>
<li>$(".box1") 就是实现了选择器的功能。</li>
<li>$(".box1").click 就是选择器 + 调用click方法</li>
<li>最后在click里面传入函数。<br>
</li>
</ul>
<p>第一个小目标就是自己封装js来实现上面代码的功能。我们分三步走战略来实现。</p>
<ol>
<li>js实现 $(".box1")</li>
<li>实现 $(".box1").click()</li>
<li>实现 $(".box1").click( ( ) => { console.log("123") } )<br>
</li>
</ol>
<p>第一步就是先用js实现 $(".box1"), 对吧</p>
<div class="blockcode">
<pre class="brush:js;">
// 实现$(".box1")
class jquery {
constructor(arg) {
console.log(document.querySelector(arg));
}
}
function $(arg) {
return new jquery(arg);
}
// 实现$(".box1")
let res = $(".box1");
console.log(res);</pre>
</div>
<p>这样是不是就通过构建()方法并返回jquery实例,实现了(".box1")呢。</p>
<p>那好,接下来我们进行第二步就是实现 $(".box1").click()。相信大家也看出来了,就是在jquery类中多了一个click方法。</p>
<div class="blockcode">
<pre class="brush:js;">
// 实现$(".box1").click()
class jquery {
constructor(arg) {
console.log(document.querySelector(arg));
}
click() {
console.log("执行了click方法");
}
}
function $(arg) {
return new jquery(arg);
}
// 实现$(".box1").click()
let res = $(".box1").click();
console.log(res);</pre>
</div>
<p>接下来,我们进行第三步就是实现 $(".box1").click( ( ) => { console.log("123") } )。</p>
<div class="blockcode">
<pre class="brush:js;">
// 实现$(".box1").click(() => {console.log("123")})
class jquery {
constructor(arg) {
this.element = document.querySelector(arg);
// console.log(element);
}
click(fn) {
this.element.addEventListener("click", fn);
}
}
function $(arg) {
return new jquery(arg);
}
//实现$(".box1").click(() => {console.log("123")})
$(".box1").click(() => {
console.log("123")
});</pre>
</div>
<p>到此为止,我们实现了第一个小目标,大家是不是觉得简单呢,ok,接下来我们继续第二个小目标。</p>
<h2>2. 实现$("div").click( )方法<br>
</h2>
<p>第二个小目标也不难,就是考虑有多个div元素需要绑定click事件,我们用selectSelectorAll来获取元素的话,如何处理,其实也挺简单,就是在click方法中多出一个循环,去获取NodeList中的值。我直接上代码了,大家试一试就知道啦。</p>
<div class="blockcode">
<pre class="brush:js;">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style> .box1 {
width: 100px;
height: 100px;
background: red;
}
.box2 {
width: 100px;
height: 100px;
background: blue;
} </style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
</body>
<script> // 实现$(".box1").click(() => {console.log("123")})
class jquery {
constructor(arg) {
//下面element存的是NodeList对象,它是一个类数组有length属性
this.element = document.querySelectorAll(arg);
}
click(fn) {
for(let i = 0; i < this.element.length; i++) {
this.element[i].addEventListener("click", fn);
}
}
}
function $(arg) {
return new jquery(arg);
}
//实现$(".box1").click(() => {console.log("123")})
$("div").click(() => {
console.log("123")
}); </script>
</html></pre>
</div>
<p>好了,完成两个小目标了,相信你已经有成就感了。</p>
<h2>3. 考虑$( )中参数 |
|