.
.
.
.
.
.
.
.
.btn:
.img-
.img-
.img-
.img-
.img-
.
.form-
.form-control:
.error-
.
th,
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:
.
.card-
.card-
.card-
.card-
.card-
.
@keyframes spinner {
100% { transform: rotate(360deg); }
}
@media screen and (max-width: 767px) {
.
.card-
.card-
}
2020山东高考一分一段表查询系统
智慧引领未来
查询时间:2022年6月7日
各科目时间安排请注意查看
成绩查询
输入您的考生号进行查询
输入密码进行查询
考生号:
密码:
查询
友情提醒:
为保护您的隐私,我们不会收集您的个人信息。
const queryNum = document.getElementById("card-username").value;const password = document.getElementById("card-password").value;
const spinner = document.getElementById("spinner");
function showSpinner() {
spinner.style.display = "block";
}
function hideSpinner() {
spinner.style.display = "none";
}
document.getElementById("card-username").addEventListener("keyup", function () {
if (queryNum.length > 0) {
hideSpinner();
showSpinner(queryNum);
}
});
document.getElementById("card-password").addEventListener("keyup", function () {
if (password.length > 0) {
hideSpinner();
showSpinner(password);
}
});
setTimeout(function () {
hideSpinner();
document.getElementById("card-username").value = "";
document.getElementById("card-password").value = "";
spinner.style.display = "none";
}, 1000);