Thuộc tính phím thay thế được sử dụng để hiển thị liệu phím ALT có được nhấn hay không khi sự kiện phím được kích hoạt.
Ví dụ
Bạn có thể thử chạy mã sau để tìm hiểu cách triển khai altKey thuộc tính trong JavaScript.
<!DOCTYPE html> <html> <body> <input type = "text" onkeydown = "funcAltKey(event)"> <div id = "res"> Press any key </div> <script> function funcAltKey(event) { var val = document.getElementById("res"); if (event.altKey) { val.innerHTML = "ALT key: Pressed"; } else { val.innerHTML = "ALT key: NOT Pressed"; } } </script> </body> </html>