javascript插入before(),after()新DOM
随着web的技术突飞猛进的发展。HTML5 ES6等新技术的发展,与此同时DOM等标准也在悄悄的进步,各大浏览器也在悄悄的发展适配新的属性和方法,今天我们来看看Javascript新的DOM的方法
before(),after(),prepend(),append()等新增DOM
before()
before()是个ChildNode方法,也就是节点方法。节点方法对应于元素方法。区别在于,节点可以直接是文本节点,甚至注释等。但是,元素必须要有HTML标签。
因此,before()的参数既可以是DOM元素,也可以是DOM节点,甚至可以直接字符内容;
语法如下
void ChildNode.before((节点或字符串)... 其它更多节点);
DOM案例
<pre style="margin: 0px; padding: 0px; border: 0px; font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: inherit; font-size: 18px; line-height: 27px;
font-family: inherit; vertical-align: baseline; word-break:
break-word; color: rgb(93, 93, 93); letter-spacing: normal; orphans: auto; text-align: start;
text-indent: 0px; text-transform: none; widows: 1;
word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">
</pre>
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <title>Document</title>
6 </head>
7 <body>
8 <img id="images" src="detail.jpg" alt="">
9 <p><button id="beforeText">图片前面插入文字“美女:”</button></p>
10 </body>
11 </html>
12
13 <script>
14 //插入节点的方法
15 var eleImg = document.getElementById('images');
16 var eleBtnBeforeText = document.getElementById('beforeText');
17 eleBtnBeforeText.addEventListener('click', function () {
18 var eleTitle=document.createElement('h1');
19 eleTitle.innerHTML='美女';
20 eleImg.before(eleTitle);
21 });
22
23 </script>
image
这是插入DOM节点,那可不可以指接拆入纯文本呢O(∩_∩) 淡然可以,我们再看一下纯文本代码
image image显然是可以的,那插入HTML字符串呢
<pre style="margin: 0px; padding: 0px; border: 0px; font-style: normal;
font-variant: normal; font-weight: normal; font-stretch: inherit; font-size: 18px; line-height: 27px;
font-family: inherit; vertical-align: baseline; word-break: break-word; color: rgb(93, 93, 93);
letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px;
text-transform: none; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
background-color: rgb(255, 255, 255);">
</pre>
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<title>Document</title></head><body>
<img id="images" src="detail.jpg" alt="">
<p><button id="beforeText">图片前面插入文字“美女:”</button></p></body></html><script>
//兼容处理源自 https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/before()/before().md (function (arr) {
arr.forEach(function (item) { if (item.hasOwnProperty('before')) { return;
}
Object.defineProperty(item, 'before', {
configurable: true,
enumerable: true,
writable: true,
value: function before() { var argArr = Array.prototype.slice.call(arguments),
docFrag = document.createDocumentFragment();
argArr.forEach(function (argItem) { var isNode = argItem instanceof Node;
docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem)));
});
this.parentNode.insertBefore(docFrag, this);
}
});
});
})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);</script><script>//插入节点的方法var eleImg = document.getElementById('images');var eleBtnBeforeText = document.getElementById('beforeText');
eleBtnBeforeText.addEventListener('click', function () {
eleImg.before('<strong>美女:</strong>');
});</script>
image
可以看吃是不可以直接插入HTML字符串的,有人要疑问了,我非要在图片前面插入HTML字符内容怎么办
可以使用兼容性更好的insertAdjacentHTML() DOM方法,使用示意如下:
<pre style="margin: 0px; padding: 0px; border: 0px; font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: inherit; font-size: 18px; line-height: 27px;
font-family: inherit; vertical-align: baseline; word-break: break-word; color: rgb(93, 93, 93);
letter-spacing: normal; orphans: auto; text-align: start;
text-indent: 0px; text-transform: none; widows: 1;
word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">
document.getElementById('img').insertAdjacentHTML('beforebegin', '<strong>美女:</strong>');
</pre>
语法如下:
<pre style="margin: 0px; padding: 0px; border: 0px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: inherit; font-size: 18px; line-height: 27px; font-family: inherit; vertical-align: baseline; word-break: break-word; color: rgb(93, 93, 93); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">
element.insertAdjacentHTML(position, html);
</pre>
image
after()
after跟before()语法特性兼容性都是一一对应的,差别就在于语义上,一个是在前面插入,一个是在后面插入。,这里就不更详细的解释了
重点
<pre style="margin: 0px; padding: 0px; border: 0px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: inherit; font-size: 18px; line-height: 27px; font-family: inherit; vertical-align: baseline; word-break: break-word; color: rgb(93, 93, 93); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">
after()与before这些新的方法有兼容性,兼容版本如下图所示
</pre>
image
如果非要再旧版浏览器使用新的API属性怎么办呢,我们需要引入一段代码来让老式浏览器兼容
image注意,上面的polyfill 并不支持IE8及其以下浏览器。 API只能在至少兼容到IE9浏览器的项目使用。
结束语
我们如今,原生的DOM API借鉴jQuery的优点,也整出了很多简单遍历的API方法;如果我们再粘贴一些polyfill JS搞定兼容性问题;再配合ES5很多数据处理方法;DOM leave 3的事件处理等。
基本上就没有需要使用jQuery的理由了,省了资源加载,提高了代码性能,
所以,基本上,已经不可逆地,在不久将来,不出几年,行业会兴起原生DOM API,原生JS开发前端应用的小风尚,jQuery会越来越不被人提起,完成其历史使命,日后可以领取个终身成就奖。
如果有兴趣学习web前端的小伙伴,可以来我的web前端学习裙哦575308719可以免费领取精品的web前端学习教程一份哦!