oneuijs/You-Dont-Need-jQuery
oneuijs/You-Dont-Need-jQuery
You Don't Need jQuery
前端发展很快,现代浏览器原生 API 已经足够好用。我们并不需要为了操作 DOM、Event 等再学习一下 jQuery 的 API。同时由于 React、Angular、Vue 等框架的流行,直接操作 DOM 不再是好的模式,jQuery 使用场景大大减少。本项目总结了大部分 jQuery API 替代的方法,暂时只支持 IE10+ 以上浏览器。
Translations
Query Selector
常用的 class、id、属性 选择器都可以使用 document.querySelector 或 document.querySelectorAll 替代。区别是
document.querySelector返回第一个匹配的 Elementdocument.querySelectorAll返回所有匹配的 Element 组成的 NodeList。它可以通过[].slice.call()把它转成 Array- 如果匹配不到任何 Element,jQuery 返回空数组
[],但document.querySelector返回null,注意空指针异常。当找不到时,也可以使用||设置默认的值,如document.querySelectorAll(selector) || []
注意:
document.querySelector和document.querySelectorAll性能很差。如果想提高性能,尽量使用document.getElementById、document.getElementsByClassName或document.getElementsByTagName。
1.0 Query by selector
// jQuery
(selector); // Native
document.querySelectorAll(selector);1.1 Query by class
// jQuery
(); // Native
document.querySelectorAll(); document.getElementsByClassName();1.2 Query by id
// jQuery
(); // Native
document.querySelector(); document.getElementById();1.3 Query by attribute
// jQuery
(a[target=_blank]); // Native
document.querySelectorAll(a[target=_blank]);1.4 Find sth.
Find nodes
// jQuery
.(); // Native
.querySelectorAll();Find body
// jQuery
(); // Native
document.;Find Attribute
// jQuery
.(); // Native
.getAttribute();Find data attribute
// jQuery
.(); // Native
// using getAttribute
.getAttribute(data-foo);
// you can also use `dataset` if only need to support IE 11+
.dataset[];
1.5 Sibling/Previous/Next Elements
Sibling elements
// jQuery
.siblings(); // Native
[].filter.(.parentNode.children, function(child) {
return child el;
});Previous elements
// jQuery
.(); // Native
.previousElementSibling;Next elements
// next
.();
.nextElementSibling;
1.6 Closest
Closest 获得匹配选择器的第一个祖先元素,从当前元素开始沿 DOM 树向上。
// jQuery
.closest(queryString); // Native
function closest(, selector) {
const matchesSelector .matches .webkitMatchesSelector .mozMatchesSelector .msMatchesSelector; while (el) {
(matchesSelector.(el, selector)) {
return el;
} {
el .parentElement;
}
}
return ;
}1.7 Parents Until
获取当前每一个匹配元素集的祖先,不包括匹配元素的本身。
// jQuery
.parentsUntil(selector, filter); // Native
function parentsUntil(, selector, filter) {
const result [];
const matchesSelector .matches .webkitMatchesSelector .mozMatchesSelector .msMatchesSelector; // match start from parent
el .parentElement;
while (el matchesSelector.(el, selector)) {
(filter) {
result.(el);
} {
(matchesSelector.(el, filter)) {
result.(el);
}
}
el .parentElement;
}
return result;
}1.8 Form
Input/Textarea
// jQuery
(#my-input).(); // Native
document.querySelector(#my-input).value;Get index of e.currentTarget between
.radio// jQuery
(.currentTarget).index(.radio); // Native
[].indexOf.(document.querySelectorAll(.radio), .currentTarget);
1.9 Iframe Contents
jQuery 对象的 iframe
contents()返回的是 iframe 内的documentIframe contents
// jQuery
$iframe.contents(); // Native
iframe.contentDocument;Iframe Query
// jQuery
$iframe.contents().(); // Native
iframe.contentDocument.querySelectorAll();
CSS & Style
2.1 CSS
Get style
// jQuery
.(color); // Native
// 注意:此处为了解决当 style 值为 auto 时,返回 auto 的问题
const .ownerDocument.defaultView;
// null 的意思是不返回伪类元素
.getComputedStyle(el, ).color;Set style
// jQuery
.({ color #ff0011 }); // Native
.style.color #ff0011;Get/Set Styles
注意,如果想一次设置多个 style,可以参考 oui-dom-utils 中 setStyles 方法
Add class
// jQuery
.addClass(className); // Native
.classList.(className);Remove class
// jQuery
.removeClass(className); // Native
.classList.remove(className);has class
// jQuery
.hasClass(className); // Native
.classList.contains(className);Toggle class
// jQuery
.toggleClass(className); // Native
.classList.toggle(className);
2.2 Width & Height
Width 与 Height 获取方法相同,下面以 Height 为例:
Window height
// jQuery
(window).height(); // Native
// 不含 scrollbar,与 jQuery 行为一致
window.document.documentElement.clientHeight;
// 含 scrollbar
window.innerHeight;Document height
// jQuery
(document).height(); // Native
document.documentElement.scrollHeight;Element height
// jQuery
.height(); // Native
// 与 jQuery 一致(一直为 content 区域的高度)
function getHeight() {
const styles .getComputedStyle(el);
const height .offsetHeight;
const borderTopWidth parseFloat(styles.borderTopWidth);
const borderBottomWidth parseFloat(styles.borderBottomWidth);
const paddingTop parseFloat(styles.paddingTop);
const paddingBottom parseFloat(styles.paddingBottom);
return height borderBottomWidth borderTopWidth paddingTop paddingBottom;
}
// 精确到整数(border-box 时为 height 值,content-box 时为 height + padding + border 值)
.clientHeight;
// 精确到小数(border-box 时为 height 值,content-box 时为 height + padding + border 值)
.getBoundingClientRect().height;Iframe height
$iframe .contents() 方法返回 iframe 的 contentDocument
// jQuery
(iframe).contents().height(); // Native
iframe.contentDocument.documentElement.scrollHeight;
2.3 Position & Offset
Position
// jQuery
.position(); // Native
{ left .offsetLeft, top .offsetTop }Offset
// jQuery
.offset(); // Native
function getOffset () {
const .getBoundingClientRect(); return {
top . window.pageYOffset document.documentElement.clientTop,
left . window.pageXOffset document.documentElement.clientLeft
}
}
2.4 Scroll Top
// jQuery
(window).scrollTop(); // Native
(document.documentElement document.documentElement.scrollTop) document..scrollTop;
DOM Manipulation
3.1 Remove
// jQuery
.remove(); // Native
.parentNode.removeChild(el);3.2 Text
Get text
// jQuery
.(); // Native
.textContent;Set text
// jQuery
.(string); // Native
.textContent string;
3.3 HTML
Get HTML
// jQuery
.(); // Native
.innerHTML;Set HTML
// jQuery
.(htmlString); // Native
.innerHTML htmlString;
3.4 Append
Append 插入到子节点的末尾
// jQuery
.append(<div id='container'>hello</div>); // Native
newEl document.createElement();
newEl.setAttribute(, container);
newEl.innerHTML hello;
.appendChild(newEl);3.5 Prepend
// jQuery
.prepend(<div id='container'>hello</div>); // Native
newEl document.createElement();
newEl.setAttribute(, container);
newEl.innerHTML hello;
.insertBefore(newEl, .firstChild);3.6 insertBefore
在选中元素前插入新节点
// jQuery
$newEl.insertBefore(queryString); // Native
const target document.querySelector(queryString);
target.parentNode.insertBefore(newEl, target);3.7 insertAfter
在选中元素后插入新节点
// jQuery
$newEl.insertAfter(queryString); // Native
const target document.querySelector(queryString);
target.parentNode.insertBefore(newEl, target.nextSibling);
用 fetch 和 fetch-jsonp 替代
Events
完整地替代命名空间和事件代理,链接到 https://github.com/oneuijs/oui-dom-events
5.1 Bind an event with on
// jQuery
.(eventName, eventHandler); // Native
.addEventListener(eventName, eventHandler);5.2 Unbind an event with off
// jQuery
.(eventName, eventHandler); // Native
.removeEventListener(eventName, eventHandler);5.3 Trigger
// jQuery
(el).trigger(custom-event, {key1 }); // Native
(window.CustomEvent) {
const event CustomEvent(custom-event, {detail {key1 }});
} {
const event document.createEvent(CustomEvent);
event.initCustomEvent(custom-event, , , {key1 });
} .dispatchEvent(event);
Utilities
6.1 isArray
// jQuery
.isArray(range); // Native
Array.isArray(range);6.2 Trim
// jQuery
.(string); // Native
string.();6.3 Object Assign
继承,使用 object.assign polyfill https://github.com/ljharb/object.assign
// jQuery
.extend({}, defaultOpts, opts); // Native
Object.assign({}, defaultOpts, opts);6.4 Contains
// jQuery
.contains(el, child); // Native
el child .contains(child);
Alternatives
- 你可能不需要 jQuery (You Might Not Need jQuery) - 如何使用原生 JavaScript 实现通用事件,元素,ajax 等用法。
- npm-dom 以及 webmodules - 在 NPM 上提供独立 DOM 模块的组织
Browser Support
| Latest ✔ | Latest ✔ | 10+ ✔ | Latest ✔ | 6.1+ ✔ |
License
oneuijs/You-Dont-Need-jQuery的更多相关文章
- You Don't Need jQuery
前端发展很快,现代浏览器原生 API 已经足够好用.我们并不需要为了操作 DOM.Event 等再学习一下 jQuery 的 API.同时由于 React.Angular.Vue 等框架的流行,直接操 ...
- 抛弃jQuery,拥抱原生JavaScript
前端发展很快,现代浏览器原生 API 已经足够好用.我们并不需要为了操作 DOM.Event 等再学习一下 jQuery 的 API.同时由于 React.Angular.Vue 等框架的流行,直接操 ...
- 原生JS替代jQuery的各种方法汇总
前端发展很快,现代浏览器原生 API 已经足够好用.我们并不需要为了操作 DOM.Event 等再学习一下 jQuery 的 API.同时由于 React.Angular.Vue 等框架的流行,直接操 ...
- jQuery与原生JS相互转化
前端发展很快,现代浏览器原生 API 已经足够好用.我们并不需要为了操作 DOM.Event 等再学习一下 jQuery 的 API.同时由于 React.Angular.Vue 等框架的流行,直接操 ...
- 你不需要jQuery You Don't Need jQuery
转载:https://github.com/oneuijs/You-Dont-Need-jQuery/blob/master/README.zh-CN.md You Don't Need jQuery ...
- 原生js替换jQuery各种方法-中文版
原文https://github.com/nefe/You-D... 原生JS与jQuery操作DOM对比 You Don't Need jQuery 前端发展很快,现代浏览器原生 API 已经足够好 ...
- You-Dont-Need-JQuery (你不需要JQuery)
看完这篇文章我才觉得真的要用JQuery ,因为实在是有些地方设计的使用太复杂了, document.querySelector() 和 Document.querySelectorAll 的确是很方 ...
- 原生 JavaScript 代替 jQuery【转】
目录 用原生JavaScript代替jQuery Query Selector CSS & Style DOM Manipulation Ajax Events Utilities Promi ...
- 去JQUERY化
时间 2016-05-17 12:43:59 OurJS 原文 http://ourjs.com/detail/573a9cec88feaf2d031d24fc 主题 jQuery 这是一篇使用原 ...
随机推荐
- vagrant vbox上配置好开发环境缓存问题
vagrant配置完成 设置好共享目录 搭建好nginx环境 访问 127.0.0.1:8080 一切正常 然后进入本的的开发目录修改测试文件保存后刷新页面 问题来了..........没变化 然 ...
- android 解决ListView点击与滑动事件冲突
如果你的ListView的Item有滑动功能,但又点击Item跳转到其它activity,这样若是在Adapter里面写点击事件是会导致滑动事件获取不到焦点而失效: 解决方法:不要在adapter里面 ...
- jQuery的deferred对象详解
jQuery的deferred对象详解请猛击下面的链接 http://www.ruanyifeng.com/blog/2011/08/a_detailed_explanation_of_jquery_ ...
- J2EE基础之JavaBean
J2EE基础之JavaBean 1.什么是JavaBean? JavaBean本质上来说就是一个Java类,它通过封装属性和方法成为具有独立功能.可重复使用的,并可以与其他控件通信的组件对象.通过在J ...
- 【原】移动web页面使用字体的思考
回想2年前刚开始接触手机项目,接到PSD稿后,发现视觉设计师们喜欢用微软雅黑作为中文字体进行设计,于是我写页面的时候也定义 font-family 为微软雅黑,后来发到线上后,细心的产品经理发现页面的 ...
- 匈牙利算法 cogs 886. [USACO 4.2] 完美的牛栏
886. [USACO 4.2] 完美的牛栏 ★★☆ 输入文件:stall4.in 输出文件:stall4.out 简单对比时间限制:1 s 内存限制:128 MB USACO/sta ...
- 卡通图像变形算法(Moving Least Squares)附源码
本文介绍一种利用移动最小二乘法来实现图像变形的方法,该方法由用户指定图像中的控制点,并通过拖拽控制点来驱动图像变形.假设p为原图像中控制点的位置,q为拖拽后控制点的位置,我们利用移动最小二乘法来为原图 ...
- java Socket编程-基于UDP
package com.wzy.UDPTest; import java.net.DatagramPacket; import java.net.DatagramSocket; import java ...
- Android与Struts2简单json通信
具体要求是: 服务器端得到客户端传递来的数据,并返回给客户端一条json格式的字符串 闲话不多说,直接上代码 首先是服务器端代码:建立一个web工程,导入struts2和json的jar包,并在web ...
- Hibernate第三次测试错题解析
此题目考查的是Hibernate查询缓存适用的场合,对于经常使用的查询语句, 如果启用了查询缓存,当第一次执行查询语句时,Hibernate会把查询结果存放在第二缓存中. 以后再次执行该查询语句时,只 ...