亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

input對(duì)象

input物件

一個(gè)<input>標(biāo)記,就是一個(gè)input物件。


input物件的屬性(以type=text為例)

  • name:表單元素的名稱(chēng)。

  • value:表單元素的值,使用者輸入的內(nèi)容,可以透過(guò)該屬性來(lái)取得。

  • size:表單的長(zhǎng)度。

  • maxlength:表單元素的最大長(zhǎng)度(最多可輸?shù)淖衷獢?shù))。

  • disabled:停用屬性。

  • readonly:只讀屬性。


#input物件的方法

  • focus():獲得焦點(diǎn)的方法(定位遊標(biāo))。

  • blur():失去焦點(diǎn)的方法(移走遊標(biāo))。

  • select():選取文字的方法。


input物件的事件

  • onfocus:獲得焦點(diǎn)時(shí)

  • onblur:當(dāng)失去焦點(diǎn)時(shí)

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>php.cn</title>
<script>
</script>
</head>
<body>
<form name="form1" method="post" action="login.php">
用戶(hù)名:<input type="text" name="username" onfocus="this.value='focus';this.select()" onblur="this.value='blur'" />
密碼:<input type="password" name="userpwd" />
<input type="submit" value="提交表單" />
</form>
</body>
</html>
繼續(xù)學(xué)習(xí)
||
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8" /> <title>php.cn</title> <script> </script> </head> <body> <form name="form1" method="post" action="login.php"> 用戶(hù)名:<input type="text" name="username" onfocus="this.value='focus';this.select()" onblur="this.value='blur'" /> 密碼:<input type="password" name="userpwd" /> <input type="submit" value="提交表單" /> </form> </body> </html>
提交重置程式碼