使用 onblur 屬性在 HTML 中的元素失去焦點時執行腳本。您可以嘗試執行以下程式碼來實作onblur屬性 -
<!DOCTYPE html> <html> <body> <p>Type text below!</p> Country: <input type = "text" name = "myid" id = "myid" onblur = "display()"> <script> function display() { var str = document.getElementById("myid"); str.value = str.value.toUpperCase(); } </script> </body> </html>
以上是當HTML元素失去焦點時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!