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

javascript - document.createElement illegal invocation - Stack Overflow

programmeradmin1浏览0评论

I was thinking to minimize some javascript code but I get this "illegal invocation" error when I try to call a function through an alias

var d = document.createElement;
d('input');

Does anybody know why? tx

I was thinking to minimize some javascript code but I get this "illegal invocation" error when I try to call a function through an alias

var d = document.createElement;
d('input');

Does anybody know why? tx

Share Improve this question asked Sep 6, 2015 at 12:30 ElfyElfy 1,8636 gold badges21 silver badges40 bronze badges 2
  • 1 possible duplicate of document.createElement not working – Dave Commented Sep 6, 2015 at 12:34
  • try var d = document.createElement.bind(document); – Jaromanda X Commented Sep 6, 2015 at 12:34
Add a ment  | 

2 Answers 2

Reset to default 9

Looks like this has been addressed by others. It boils down to the fact that

document.createElement checks to make sure that this refers to document. You can bypass this behavior by doing the following:

Either A: always use it as document.createElement(tagname) OR

B

var o = document.createElement
o.call(document, tagname)

C

var d = document.createElement.bind(document); 

(from above answer)

See http://blog.vjeux./2011/javascript/hook-document-createelement.html

use

var d = document.createElement.bind(document);

to bind the this in your d function to the document object

发布评论

评论列表(0)

  1. 暂无评论