您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)HTML5 表單屬性的實(shí)例,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
表單事件:
oninput:當(dāng)用戶(hù)輸入的時(shí)候觸發(fā)。
oninvalid:當(dāng)驗(yàn)證未通過(guò)時(shí)觸發(fā)。
demo.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> form { width: 100%; max-width: 640px; min-width: 320px; margin: 0 auto; font-family: "Microsoft Yahei"; font-size: 20px; } input { display: block; width: 100%; height: 30px; margin: 10px 0; } </style> </head> <body> <form action="" > <fieldset> <legend>表單事件</legend> <label> 用戶(hù)名:<input type="text" name="userName" id="userName"> </label> <label> 密碼:<input type="text" name="pwd" id="pwd"> </label> <label> 郵箱:<input type="email" name="email" id="email"> </label> <input type="submit"> </fieldset> </form> </body> <script> //表單事件: oninput:當(dāng)用戶(hù)輸入的時(shí)候觸發(fā)。 oninvalid:當(dāng)驗(yàn)證未通過(guò)時(shí)觸發(fā)。 var txt1 = document.getElementById("userName"); var txt2 = document.getElementById("pwd"); var txt3 = document.getElementById("email"); var num = 0; //oninput:當(dāng)用戶(hù)輸入的時(shí)候觸發(fā)該事件 txt1.oninput = function() { num++; txt2.value = num; }; //oninvalid:驗(yàn)證不通過(guò)時(shí)觸發(fā)該事件 txt3.oninvalid = function() { this.setCustomValidity("自定義的提示文本"); //設(shè)置驗(yàn)證不通過(guò)時(shí)的提示文本 }; </script> </html>
上述就是小編為大家分享的HTML5 表單屬性的實(shí)例了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。