手写一个简易的jquery 2020/12/03

手写一个简易的jquery

class写法

class jquery{
	constructor(selector){
			const result = document.querySelectorAll(selector)
			const length = result.length
			for(let i=0; i < length ; i++){
				this[i] = result[i]
			}
			this.length = length
			this.selector = selector
		}
		get(index){
			return this[index]
		}
		each(fn){
			for(let i=0; i < length ; i++){
				const elem = this[i]
				fn(elem)
			}
		}
	}
	//插件写法1
	jquery.prototype.chajian = function(el){
	  console.log(el)
	}
	//复写方式
	class jquery2 extends jquery{
		constructor(selector){
			super(selector)
		}
		addClass(classname){
			console.log(classname)
			for(let i=0; i < this.length ; i++){
				const elem = this[i]
				elem.className += `${elem.className} ${classname}` 
				console.log(elem)
			}
		}
	}
	const $div = new jquery2('div')

	**es5写法**
	function Jquery(selector){
		var result = document.querySelectorAll(selector)
			var length = result.length
			for(var i=0; i < length ; i++){
				this[i] = result[i]
			}
			this.length = length
			this.selector = selector
		}
	Jquery.prototype.get = function(index){
		return this[index]
	}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值