2025-04-24 13:11:28 +08:00

10 lines
226 B
JavaScript

export function disableElement(el) {
el.setAttribute('disabled', '')
el.setAttribute('aria-disabled', 'true')
}
export function enableElement(el) {
el.removeAttribute('disabled')
el.removeAttribute('aria-disabled')
}