gpt4 book ai didi

javascript - ng-repeat 不适用于表 但适用于列表
  • 转载 作者:行者123 更新时间:2023-12-04 00:35:53 25 4
    gpt4 key购买 nike

    我有以下代码:Code on Plnkr

    我正在尝试使用 ng-repeat一张 table 内。但这不起作用。而相同的代码适用于列表 <li>

    这是相同的片段。

    <h1>Using list</h1>
    <ul>
    <li ng-repeat="item in sampleArray">{{item}}</li>
    </ul>
    <h1>Using Table</h1>
    <table>
    <tr ng-repeat="item in sampleArray">{{item}}</tr>
    </table>

    <tr> 中使用 ng-repeat 是否不正确? .我怎样才能正确使用表格。

    最佳答案

    根据 W3C HTML Table definition

    Tables are defined with the tag.

    Tables are divided into table rows with the tag.

    Table rows are divided into table data with the tag.

    A table row can also be divided into table headings with the tag.

    所以根本原因是你错过了一个<td><th> <tr> 中的元素元素

    <tr ng-repeat="item in sampleArray"><td>{{item}}</td></tr>

    关于javascript - ng-repeat 不适用于表 <tr> 但适用于列表 <li>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28525986/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com