Male範例1一個在HTML中實作密碼輸入的範例如下:"/> Male範例1一個在HTML中實作密碼輸入的範例如下:">
我們使用標籤,透過將password賦值給type屬性,在HTML表單中接收密碼輸入。當我們輸入密碼時,它會立即隱藏字元。這也是一個單行文字輸入。
<form> <input type="password" name="name… " value=" ">Male </form>
一個在HTML中實作密碼輸入的範例如下:
<!DOCTYPE html> <html> <body> <head> <meta charset="UTF-8"> <meta name="description" content="meta tag in the web document"> <meta name="keywords" content="HTML,CSS"> <meta name="author" content="lokesh"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <p>Branch</p> <form> <input type="password" id="CSE" name="Branch" value="CSE" > <label for="CSE">Enter password</label> <br> <input type="password" name="Branch" value="IT" > <label for="CSE">Re-enter password</label> </form> </body> </html>
下面給出了另一個將輸入作為密碼的範例。您可以嘗試執行以下程式碼 -
<!DOCTYPE html> <html> <body> <head> <title>HTML Forms</title> </head> <p>Add your details:</p> <form> Student Username:<br> <input type="text" name="name"> <br> Password:<br> <input type="password" name="password"> <br> </form> </body> </html>
以上是我們如何在HTML表單中輸入密碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!