2014-03-04 60 views
-2

請看看https://github.com/eligrey/classList.js/blob/master/classList.js什麼使用document.createElement( 「_」)在JavaScript做

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

什麼是document.createElement("_")的目的是什麼?我知道它創建一個html元素,但爲什麼使用_而不是html元素名稱?

+11

*這麼多?*你能提供幾個例子嗎? – VisioN

+0

你確定你還沒有見過'document.createElement(_)'? – Teemu

+0

@Teemu看看https://github.com/eligrey/classList.js/blob/master/classList.js –

回答

4

它創建一個標籤爲< _>的元素。我看不到這個合理的目的。