# HTML

# input的disable和readonly的区别

# disable

在表单被提交的时候不会被发送
无法被focus,在使用tab切换表单项的时候也会被跳过

# readonly

在表单被提交的时候会被发送
可以被focus,也可以被tab切换选中