HTML5 表單新屬性 6. required屬性
提問(wèn)人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-16
可以對(duì)input元素與textarea元素指定required屬性。該屬性表示在用戶提交時(shí)進(jìn)行檢查,檢查該元素內(nèi)一定要有輸入內(nèi)容,代碼示例如下:
<form action="" novalidate>
<input type="text" name="username" required />
<input type="password" name="password" required />
<input type="submit" value="提交">
</form>
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>