最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Javascript insertAdjacentHTML not working - Stack Overflow

programmeradmin1浏览0评论

In fiddle - /, does not work as expected

var x = document.createElement("button");
x.textContent = "byyyyy";
elx = document.getElementById("el");
elx.insertAdjacentHTML('afterend', x); 

In fiddle - http://jsfiddle/u3bmytnL/, does not work as expected

var x = document.createElement("button");
x.textContent = "byyyyy";
elx = document.getElementById("el");
elx.insertAdjacentHTML('afterend', x); 
Share Improve this question edited Feb 6, 2015 at 10:53 nikhil rao asked Feb 6, 2015 at 10:43 nikhil raonikhil rao 3913 gold badges6 silver badges9 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 9

That's should resolve:

var x = document.createElement("BUTTON");
var text = document.createTextNode("byyyy");
x.appendChild(text);
elx = document.getElementById("el");
elx.insertAdjacentHTML('afterend', x.outerHTML); 

The insertAdjacentHTML needs a string as second parameter, and you was passing a DOM element, so you need to get the HTML string

It is because insertAdjacentHTML method takes a string instead of an element node reference.

MDN insertAdjacentHTML

You should put a string as the second parameter

发布评论

评论列表(0)

  1. 暂无评论