HTML5-表单的应用、隐藏域、只读、禁用、增强鼠标可用性(点击文字就能选中文本框)


表单应用:
隐藏域:hidden
只读:readonly
禁用:disabled




DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录注册title>
head>
<body>
    
  <h1>注册h1>
  
    
    
<p>
  文本:
  <input type="text"  value="amde" readonly/>
  p>
  
  
     <input type="radio" value="boy" name="sa" checked disabled/><input type="radio" value="girl" name="sa"/>
    <p>密码
    <input type="passwod" value="12345" hidden/> 
    
    p>
  
  
  <label for="yg">
    <p>文本:
    <input type="text" id="yg" /> 
    p>label>
  
  
    
    <p>
    <input type="submit"/> 
    <input type="reset"/>
    p>
  
    
  form>
  
body>
html>