This repository has been archived on 2024-07-21. You can view files and clone it, but cannot push or open issues or pull requests.
Chenx221 3fdf17eb7e 完成成绩修改页前端
Signed-off-by: Chenx221 <chenx221@yandex.com>
2023-06-12 20:11:38 +08:00

13 lines
544 B
JavaScript

const input_min = document.querySelector("#customRange1")
const input_max = document.querySelector("#customRange2")
const value_min = document.querySelector("#score_min_value")
const value_max = document.querySelector("#score_max_value")
input_min.addEventListener("input", (event) => {
value_min.textContent = event.target.value
input_max.setAttribute("min", event.target.value)
})
input_max.addEventListener("input", (event) => {
value_max.textContent = event.target.value
input_min.setAttribute("max", event.target.value)
})