分页和多维数组

时间:2017-12-04 11:59:04

标签: javascript object multidimensional-array pagination appendchild

这是我的代码。我的结果是正确的但我在控制台中有这个错误:TypeError:Node.appendChild的参数1不是对象。

项目是二维数组。

    appendChildren(buttons, pages.map(function (page, index) {
            var button = document.createElement("button");
            button.addEventListener("click", display);
            button.innerHTML = index + 1;
            return button;
        }));

        appendChildren(items, page.items.map(function (item, index) {

            var index = index + 1
            idMarque = "marque" + (index);
            idImage = "image" + (index);
            numero = list.indexOf(item);

        }));

        function appendChildren(element, children) {
            children.forEach(function (child) {
                element.appendChild(child);
            });
        }

这是我的console.log的结果 !https://drive.google.com/open?id=1-V_WnitWzswKruXcxr8oeVjOZicRcBTW

0 个答案:

没有答案