简体   繁体   English

如何获取表中 td 标记的内部 html 中存在的值

[英]How to get the value present in inner html of the td tag in table

index.html索引.html

   <tr>
            <td>
                <input type="text" name="id" id="id" value="<%=rn%>">
            </td>
            <td>
                <input type="text" name="name" id="name" value="<%=na%>">
            </td>
            <td>
                <input type="text" name="location" id="location" value="<%=pe%>">
            </td>
            <td>
                <input type="text" name="nbed" id="nbed" value="<%=ad%>">
            </td>
            <td>
                <input type="text" name="obed" id="obed" value="<%=obed%>">
            </td>
            <td>
                <input type="text" name="ibed" id="ibed" value="<%=ibed%>">
            </td>
            <td>
                <input type="hidden" name="type" value="edit">
                <button type="button" onclick="loadAjax()">edit</button>
            </td>
            <td>
                <input type="hidden" name="sid" value = "<%=rn%>" id="sid">
                <button type="button" onclick="loadAjax2()">Delete</button>
            </td>
        </form>
       <% } %>
       </tr>

script.js脚本.js

var table = document.getElementById("data");

            for (var i = 0, row; row = table.rows[i]; i++) 
            {
                for (var j = 0, col; col = row.cells[j]; j++) {
                        console.log(col.innerHTML);
                }  
            }

When I iterate this table I get the html part of each td tag like this,当我迭代这个表时,我得到每个 td 标签的 html 部分,如下所示,

        **<input type="text" name="location" id="location" value=" fkeaqwji" pwa2-uuid="EDITOR/input-478-395-B6990-D43" pwa-fake-editor="">**

How shall I get the value present in the value tag of this Inner html?我该如何获取这个 Inner html 的值标签中存在的值?

Thanks in advance提前致谢

You can retrieve the value of <input> elements nested inside the table cells, using col.querySelector('input').value .您可以使用col.querySelector('input').value检索嵌套在表格单元格内的<input>元素的值。

I crafted this demo on top of your code:我在您的代码之上制作了这个演示:

 var table = document.getElementById("data"); for (var i = 0, row; row = table.rows[i]; i++) { for (var j = 0, col; col = row.cells[j]; j++) { const inputElement = col.querySelector('input'); //just in case there's no input element inside the td if (inputElement !== null){ const value = inputElement.value; console.log( value ); } } }
 tr{ display: flex; flex-direction: column; }
 <table id="data"> <tr> <td> <input type="text" name="id" id="id" value="<%=rn%>"> </td> <td> <input type="text" name="name" id="name" value="<%=na%>"> </td> <td> <input type="text" name="location" id="location" value="<%=pe%>"> </td> <td> <input type="text" name="nbed" id="nbed" value="<%=ad%>"> </td> <td> <input type="text" name="obed" id="obed" value="<%=obed%>"> </td> <td> <input type="text" name="ibed" id="ibed" value="<%=ibed%>"> </td> </tr> </table>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM