0

如何在winjs listview中突出显示图像最新图像

我正在开发一个 winJS 应用程序。我需要在 winJS 列表视图中突出显示最新图像。

4

1 回答 1

1

您可以使用选择器实现此目的CSS3

.win-listview img:last-child {
    /* highlight style */
}

在 JS 中选择和修改:

var listview = document.querySelector('.win-listview');
var firstChild = listview.firstChild();
// Perform any needed action to firstChild
于 2013-03-25T12:38:18.353 回答