質問

Please have a look at https://github.com/eligrey/classList.js/blob/master/classList.js :

if ("document" in self && !("classList" in document.createElement("_"))) {
  //...
}

What is the purpose of document.createElement("_")? I know it creates an html element, but why use _ instead of an html element name?

役に立ちましたか?

解決

It creates an element with the tag <_>. I see no reasonable purpose to this.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top