Angularjs根据当前时间移动tr

时间:2018-02-20 13:00:22

标签: javascript angularjs html5

我正在寻找一种方法来实现一个移动的表格行来指示我在带有时间戳的表格中的当前时间。

<table>
    <tr ng-repeat="timestamp in timestampArray">
        <td>{{timestamp}}</td>
    </tr>
</table>

当前表:

enter image description here

我想要实现的目标:

enter image description here

“NOW”的表格行应根据当前时间自动移动。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您可以将ng-repeat时间戳值与今天的时间戳值进行比较,并可以使用ng-if来处理此问题。

喜欢

    <table>
        <tr ng-repeat="timestamp in timestampArray">
 <td>{{timestamp}}</td>
            <td ng-if="timestamp == todaytimestamp">Now</td>
        </tr>
    </table>