标签: javascript ecmascript-6
我知道我们可以使用 const a = document.createElement('a')。
const a = document.createElement('a')
但我正在尝试的是 const a = new HTMLAnchorElement()
const a = new HTMLAnchorElement()
然而,这将抛出以下例外: Uncaught TypeError: Illegal constructor
Uncaught TypeError: Illegal constructor
我做错了什么?