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精明的人。
'DDD.addClass( 'DS-頭一天') ;'? – guradio
,不工作 – RiotAct
'他們產生錯誤'而他們是? – webnoob