结果数量统计
This commit is contained in:
parent
d88bcd3afe
commit
4cf55191a0
|
@ -315,6 +315,9 @@
|
|||
.search-box .show-official-awoken-sorting-label::after{
|
||||
content: "Use the official Awoken sorting";
|
||||
}
|
||||
.search-mon-list .search-list-length::before{
|
||||
content: "Number of results:";
|
||||
}
|
||||
.search-box .sort-div::before{
|
||||
content: "Sort by:";
|
||||
}
|
||||
|
|
|
@ -307,6 +307,9 @@
|
|||
.search-box .show-official-awoken-sorting-label::after{
|
||||
content: "公式の覚醒ソートを使用";
|
||||
}
|
||||
.search-mon-list .search-list-length::before{
|
||||
content: "結果の数:";
|
||||
}
|
||||
.search-box .sort-div::before{
|
||||
content: "並べ替え:";
|
||||
}
|
||||
|
|
|
@ -304,6 +304,9 @@
|
|||
.search-box .show-official-awoken-sorting-label::after{
|
||||
content: "공식 각성 순서를 사용합니다";
|
||||
}
|
||||
.search-mon-list .search-list-length::before{
|
||||
content: "결과 수:";
|
||||
}
|
||||
.search-box .sort-div::before{
|
||||
content: "정렬:";
|
||||
}
|
||||
|
|
|
@ -310,6 +310,9 @@
|
|||
.search-box .show-official-awoken-sorting-label::after{
|
||||
content: "使用官方覺醒排序";
|
||||
}
|
||||
.search-mon-list .search-list-length::before{
|
||||
content: "結果數量:";
|
||||
}
|
||||
.search-box .sort-div::before{
|
||||
content: "排序:";
|
||||
}
|
||||
|
|
|
@ -310,6 +310,9 @@
|
|||
.search-box .show-official-awoken-sorting-label::after{
|
||||
content: "使用官方觉醒排序";
|
||||
}
|
||||
.search-mon-list .search-list-length::before{
|
||||
content: "结果数量:";
|
||||
}
|
||||
.search-box .sort-div::before{
|
||||
content: "排序:";
|
||||
}
|
||||
|
|
|
@ -1296,6 +1296,9 @@ function initialize() {
|
|||
|
||||
if (searchArr.length > 0) {
|
||||
const fragment = document.createDocumentFragment(); //创建节点用的临时空间
|
||||
const listLength = fragment.appendChild(document.createElement("div"));
|
||||
listLength.className = "search-list-length";
|
||||
listLength.textContent = searchArr.length;
|
||||
//获取原始排序的头像列表
|
||||
const additionalOption = { //搜索列表的额外选项
|
||||
showAwoken: s_add_show_awoken.checked,
|
||||
|
|
Loading…
Reference in New Issue