執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
轉到 Spaces
<!DOCTYPE html> <html> <head> <script> function myFunction() { const x = document.getElementById("fname"); x.value = x.value.toUpperCase(); } </script> </head> <body> <h1>JavaScript HTML Events</h1> <h2>The onblur Attribute</h2> Enter your name: <input type="text" id="fname" onblur="myFunction()"> <p>When you leave the input field, a function is triggered which transforms the input text to upper case.</p> </body> </html>