美文网首页coder
遍历原生table中的内容到json

遍历原生table中的内容到json

作者: S拒绝拖延 | 来源:发表于2019-09-26 11:49 被阅读0次
        function fore() {
                var tabLen = document.getElementById("table");
                var jsonT = [];
                for (var i = 0; i < tabLen.rows.length; i++) {
                    if (tabLen.rows[i].cells[2] != null) {
                        var name = tabLen.rows[i].cells[2].innerHTML.replace(/<[^>]+>/g, "").trim();
                    }
                    if (tabLen.rows[i].cells[3] != null) {
                        var comment = tabLen.rows[i].cells[3].innerHTML.replace(/<[^>]+>/g, "").trim();
                    }
                    if (i == 0) {
                    } else {
                        var json = {};
                        if (name != null) {
                            json.name = name;
                        }
                        if (comment != null) {
                            json.comment = comment;
                        }
                        jsonT.push(json);
                    }
    
                }
                console.table(jsonT);
            }
    

    相关文章

      网友评论

        本文标题:遍历原生table中的内容到json

        本文链接:https://www.haomeiwen.com/subject/nvmmyctx.html