執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <form> Username: <input type="text" id="usrname"><br> Password: <input type="password" id="myPsw"> </form><br> <button onclick="disablePsw()">Disable Password field</button> <button onclick="undisablePsw()">Undisable Password field</button> <script> function disablePsw() { document.getElementById("myPsw").disabled = true; } function undisablePsw() { document.getElementById("myPsw").disabled = false; } </script> </body> </html>