2017-08-12 129 views
1

我正在使用jQuery爲fullcalendar.js動態構建列標題。此代碼正在工作,但我希望能夠爲每個元素添加一個類名稱。Jquery,創建元素的添加類

function buildDateColumnHeader(theDate) { 
    var container = document.createElement('div'); 
    var DDD = document.createElement('span'); 
    var ddMMM = document.createElement('span'); 
    DD.textContent = theDate.format('DD').toUpperCase(); 
    ddd.textContent = theDate.format('ddd'); 
    container.appendChild(DD); 
    container.appendChild(ddd); 

    return container; 
} 

我曾嘗試以下和它們所產生的錯誤:

DDD.classname = "ds-header-day"; 

var DDD = document.createElement('span').addClass('ds-header-day'); 

這可能是容易的一個jQuery精明的人。

+0

'DDD.addClass( 'DS-頭一天') ;'? – guradio

+0

,不工作 – RiotAct

+0

'他們產生錯誤'而他們是? – webnoob

回答

1

。在你的語句中的語法錯誤,希望不會造成問題

應該是`DDD.className = 'yourclass'

+0

就是這樣!總是有些愚蠢。謝謝! – RiotAct