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

javascript - JS: Appending elements to head - how to chain the methods? - Stack Overflow

programmeradmin3浏览0评论

I am a bit confused here. I was trying to do some basic DOM manipulation - testing it with appending a title to the <head> tag. This is what I wrote:

document.head.appendChild(document.createElement("title").appendChild(document.createTextNode("Test Title")));

However, the above doesn't work. If I split it up, it works:

var node = document.createElement("title");
var text = document.createTextNode("Test title");
node.appendChild(text);
document.head.appendChild(node);

Why is that, what am I missing?

I am a bit confused here. I was trying to do some basic DOM manipulation - testing it with appending a title to the <head> tag. This is what I wrote:

document.head.appendChild(document.createElement("title").appendChild(document.createTextNode("Test Title")));

However, the above doesn't work. If I split it up, it works:

var node = document.createElement("title");
var text = document.createTextNode("Test title");
node.appendChild(text);
document.head.appendChild(node);

Why is that, what am I missing?

Share Improve this question asked Nov 27, 2013 at 17:36 FygoFygo 4,6756 gold badges36 silver badges49 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

Method chaining works off the return value of the previous method.

var chain = {
    example: function (val) {
        alert(val);
        return this;
    }
};
chain.example('this').example('works');

example can be chained off of example because return this returns an object which has an example method.

In the case of parent.appendChild(child) the return value is child, which means that chaining will not add elements to parent further, instead subsequent elements will be nested.

Append the title element, then append the text to the appended object. Note parentheses-

warning- The title element is a special case, only one title element is valid in a document

document.head.appendChild(document.createElement("title")).appendChild(document.createTextNode("Test Title"));
发布评论

评论列表(0)

  1. 暂无评论