摘要:但它操作的便利性无出其右。我用写了一个基于简化版的,包含基础操作,支持链式操作,仅供日常使用。功能基于基本选择器构造,包括基于原生构造,将原生对象转化为对象。为支持批量操作,构造器应包含复数的。
原文地址:Bougie的博客
jQuery作为曾经Web前端的必备利器,随着MVVM框架的兴起,如今已稍显没落。但它操作DOM的便利性无出其右。我用ES6写了一个基于class简化版的jQuery,包含基础DOM操作,支持链式操作,仅供日常使用。当然,它不支持IE。构造器(constructor)
构造一个tinyJquery对象。功能:基于基本选择器构造,包括id、class、tagName;基于原生DOM构造,将原生DOM对象转化为tinyJquery对象。为支持批量操作,tinyJquery构造器应包含复数的DOM。
class tinyJquery { constructor(name) { if (typeof name == "string") { this.dom = document.querySelectorAll(name) } else if (name.constructor.name == "NodeList" || Array.isArray(name)){ this.dom = name } else { this.dom = [name] } } }
使用$函数构建tinyJquery对象
function $(name) { return new tinyJquery(name) }方法(后续会渐渐完善) event操作
// addEventListener on(eventName, fn, bubble = false) { this.dom.forEach(i => { i.addEventListener(eventName, fn, !bubble) }) return $(this.dom) } // removeEventListener un(eventName, fn, bubble = false) { this.dom.forEach(i => { i.removeEventListener(eventName, fn, !bubble) }) return $(this.dom) }class操作
// addClass ac(className) { this.dom.forEach(i => { i.classList.add(className) }) return $(this.dom) } // removeClass rc(className) { this.dom.forEach(i => { i.classList.remove(className) }) return $(this.dom) } // toggleClass tc(className) { this.dom.forEach(i => { i.classList.toggle(className) }) return $(this.dom) } // containClass cc(className) { let flag = false this.dom.forEach(i => { if(i.classList.contains(className)) flag = true }) return flag }属性操作
// set inline style css(obj) { this.dom.forEach(v => { Object.keys(obj).forEach(i => { v.style[i] = obj[i] }) }) return $(this.dom) } // get or set input value val(val) { if(val) { this.dom[0].value = val return $(this.dom) } else { return this.dom[0].value } }内容操作
// get or set dom innerHtml html(val) { if(val) { this.dom.forEach(i => { i.innerHTML = val }) return $(this.dom) } else { return this.dom[0].innerHTML } } // get or set attribute attr(key, val) { if(key && !val) { return this.dom[0].getAttribute(key) } else { this.dom.forEach(i => { i.setAttribute(key, val) }) return $(this.dom) } }表单操作
// get JSONData serializeObject() { let dom = this.dom[0], obj = {} dom.querySelectorAll("input, textarea").forEach(i => { obj[i.getAttribute("name")] = i.value }) return obj } // get FormData serializeForm() { let dom = this.dom[0], form = new FormData() dom.querySelectorAll("input, textarea").forEach(i => { form.append(i.getAttribute("name"), i.value) }) return form }
2018-04-16更新Dom获取
// parent parent() { return $(this.dom[0].parentNode) } // siblings siblings() { let dom = this.dom[0] var a = []; var p = dom.parentNode.children; for (var i = 0, pl = p.length; i < pl; i++) { if (p[i] !== dom) a.push(p[i]); } // console.log(Array.isArray(a)) return $(a) }遍历
// each each(callback) { // this.dom.forEach(i => { // // callback.bind(i)() // callback.call(i, null) // }) this.dom.forEach(i => { callback($(i)) }) }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/52152.html
摘要:但它操作的便利性无出其右。我用写了一个基于简化版的,仅做个学习记录。包含基础操作,支持链式操作,仅供日常使用。功能基于基本选择器构造,包括基于原生构造,将原生对象转化为对象。为支持批量操作,构造器应包含复数的。 原文地址:Bougie的博客showImg(https://segmentfault.com/img/bV71uK?w=500&h=260);jQuery作为曾经Web前端的必...
摘要:但它操作的便利性无出其右。我用写了一个基于简化版的,仅做个学习记录。包含基础操作,支持链式操作,仅供日常使用。功能基于基本选择器构造,包括基于原生构造,将原生对象转化为对象。为支持批量操作,构造器应包含复数的。 原文地址:Bougie的博客showImg(https://segmentfault.com/img/bV71uK?w=500&h=260);jQuery作为曾经Web前端的必...
摘要:但它操作的便利性无出其右。我用写了一个基于简化版的,包含基础操作,支持链式操作,仅供日常使用。功能基于基本选择器构造,包括基于原生构造,将原生对象转化为对象。为支持批量操作,构造器应包含复数的。 原文地址:Bougie的博客 jQuery作为曾经Web前端的必备利器,随着MVVM框架的兴起,如今已稍显没落。但它操作DOM的便利性无出其右。我用ES6写了一个基于class简化版的jQue...
摘要:但它操作的便利性无出其右。我用写了一个基于简化版的,包含基础操作,支持链式操作,仅供日常使用。功能基于基本选择器构造,包括基于原生构造,将原生对象转化为对象。为支持批量操作,构造器应包含复数的。 原文地址:Bougie的博客 jQuery作为曾经Web前端的必备利器,随着MVVM框架的兴起,如今已稍显没落。但它操作DOM的便利性无出其右。我用ES6写了一个基于class简化版的jQue...
摘要:我对很有兴趣,但是我发现想写不容易。于是我马上动手,有了这个,本意是自己用,现在也推荐给大家,也希望大家积极指出不足,提出建议,当然如果有更好的方案,也可以推荐给我。特点使用了,这样可以用来书写代码。 我对 react 很有兴趣,但是我发现想写 react 不容易。 我需要在开始写代码之前做很多准备工作,我需要编译jsx文件,引入react等等,而最新的react示例,有鼓励ES6来书...
阅读 3968·2023-04-26 01:48
阅读 3226·2021-10-13 09:40
阅读 1716·2021-09-26 09:55
阅读 3565·2021-08-12 13:23
阅读 1709·2021-07-25 21:37
阅读 3378·2019-08-30 15:53
阅读 1329·2019-08-29 14:16
阅读 1346·2019-08-29 12:59