午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    一個(gè)檢測(cè)表單數(shù)據(jù)的JavaScript實(shí)例
    來源:易賢網(wǎng) 閱讀:711 次 日期:2014-11-03 14:11:46
    溫馨提示:易賢網(wǎng)小編為您整理了“一個(gè)檢測(cè)表單數(shù)據(jù)的JavaScript實(shí)例”,方便廣大網(wǎng)友查閱!

    一個(gè)檢測(cè)表單數(shù)據(jù)的JavaScript實(shí)例,很簡(jiǎn)單,很實(shí)用,感興趣的朋友可以看看

    <!DOCTYPE html>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

    <title>每天一個(gè)JavaScript實(shí)例-檢測(cè)表單數(shù)據(jù)</title>

    <style>

    [role="alert"]{

    background-color: #fcc;

    font-weight: bold;

    padding:5px;

    border:1px dashed #000;

    }

    div{

    margin:10px 0;

    padding:5px;

    width:400px;

    background-color: #fff;

    }

    </style>

    <script>

    window.onload = function(){

    document.getElementById("thirdfield").onchange = validateField;

    document.getElementById("firstfield").onblur = mandatoryField;

    document.getElementById("testform").onsubmit = finalCheck;

    }

    function validateField(){

    removeAlert();

    if(!isNaN(parseFloat(this.value))){

    resetField(this);

    }else{

    badField(this);

    generateAlert("You entered an invalid value in Third Field. only numeric values such as 105 or 3.45 are allowed");

    }

    }

    function removeAlert(){

    var msg = document.getElementById("msg");

    if(msg){

    document.body.removeChild(msg);

    }

    }

    function resetField(elem){

    elem.parentNode.setAttribute("style","background-color:#fff");

    var valid = elem.getAttribute("aria-invalid");

    if(valid) elem.removeAttribute("aria-invalid");

    }

    function badField(elem){

    elem.parentNode.setAttribute("style","background-color#fee");

    elem.setAttribute("aria-invalid","true");

    }

    function generateAlert(txt){

    var txtNd = document.createTextNode(txt);

    msg = document.createElement("div");

    msg.setAttribute("role","alert");

    msg.setAttribute("id","msg");

    msg.setAttribute("class","alert");

    msg.appendChild(txtNd);

    document.body.appendChild(msg);

    }

    function mandatoryField(){

    removeAlert();

    if(this.value.length > 0 ){

    resetField(this);

    }else{

    badField(this);

    generateAlert("You must enter a value into First Field");

    }

    }

    function finalCheck(){

    //console.log("aaa");

    removeAlert();

    var fields =document.querySelectorAll('input[aria-invalid="true"]');

    //var fields =document.querySelectorAll("input[aria-invalid='true']");//錯(cuò)誤?。?!

    console.log(fields);

    if(fields.length > 0){

    generateAlert("You have incorrect fields entries that must be fixed before you can submit this form");

    return false;

    }

    }

    </script>

    </head>

    <body>

    <form id = "testform">

    <div>

    <label for="firstfield">*first Field:</label><br />

    <input id="firstfield" name = "firstfield" type = "text" aria-required = "true" />

    </div>

    <div>

    <label for="secondfield">Second Field:</label><br />

    <input id="secondfield" name = "secondfield" type = "text" />

    </div>

    <div>

    <label for="thirdfield">Third Field(numeric):</label><br />

    <input id="thirdfield" name = "thirdfield" type = "text" />

    </div>

    <div>

    <label for="fourthfield">Fourth Field:</label><br />

    <input id="fourthfield" name = "fourthfield" type = "text" />

    </div>

    <input type="submit" value = "Send Data" />

    </form>

    </body>

    </html>

    更多信息請(qǐng)查看IT技術(shù)專欄

    更多信息請(qǐng)查看腳本欄目
    易賢網(wǎng)手機(jī)網(wǎng)站地址:一個(gè)檢測(cè)表單數(shù)據(jù)的JavaScript實(shí)例
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

    2025國(guó)考·省考課程試聽報(bào)名

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)