1
0
web/static/js/index.js

13 lines
292 B
JavaScript
Raw Normal View History

2024-04-05 08:46:22 +00:00
function blog_list_open() {
var b = document.querySelectorAll("li.blog-list-all");
var index = 0, length = b.length;
for ( ; index < length; index++) {
if (b[index].style.display == 'none') {
b[index].style.display = 'block';
} else {
b[index].style.display = 'none';
}
}
}
2024-04-27 03:19:58 +00:00