0
我在更改以下代碼以使用jQuery時遇到困難。任何人都可以將我指向正確的方向嗎?JavaScript到jQuery轉換代碼
function addListItem() {
var listItem, container, dataList = document.getElementById('dataList');
// Create our list item
listItem = document.createElement('div');
listItem.setAttribute('data-bb-type', 'item');
listItem.setAttribute('data-bb-img', 'images/icons/icon11.png');
listItem.setAttribute('data-bb-title', 'Title ');
listItem.innerHTML = 'My description';
// Create a dummy container
container = document.createElement('div');
container.appendChild(listItem);
// Apply the styling
bb.imageList.apply([container]);
// Append the item
dataList.appendChild(container.firstChild);
// re-compute the scrolling area
if (bb.scroller) {
bb.scroller.refresh();
}
}
也許你可以在jQuery的發佈您的嘗試,我們可以通過您所遇到的問題,幫助工作。你更可能獲得幫助,而不是簡單地要求某人爲你做。 – jackwanders
http://docs.jquery.com/Main_Page – rwilliams
爲什麼你需要將它轉換成jquery呢?似乎這對我來說是完美的javascript。 –