主頁(yè) > 知識(shí)庫(kù) > html5默認(rèn)氣泡修改的代碼詳解

html5默認(rèn)氣泡修改的代碼詳解

熱門標(biāo)簽:黃石ai電銷機(jī)器人呼叫中心 地圖標(biāo)注軟件打印出來(lái) 如何查看地圖標(biāo)注 欣鼎電銷機(jī)器人 效果 ok電銷機(jī)器人 高德地圖標(biāo)注商戶怎么標(biāo) 惡搞電話機(jī)器人 智能電銷機(jī)器人被禁用了么 電話機(jī)器人技術(shù)

html5默認(rèn)氣泡修改

默認(rèn)的瀏覽器氣泡樣式:

谷歌瀏覽器

 
 

火狐瀏覽器

 
 

IE瀏覽器

 
 

在谷歌29版本之前可以使用偽元素進(jìn)行修改:

::-webkit-validation-bubble 不過(guò)已被廢棄?。。?/p>

新的解決方案:

效果圖:

 
 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>form</title>
    <style>
        .container{margin:100px;font-size:14px;position: relative;}
        .item{position: relative;width:250px;height:40px;margin-bottom: 10px;}
        input{width:250px;height:20px;line-height:20px;border-radius: 4px;border:1px solid #999;color:#999;margin-bottom:10px;padding:5px;position: absolute;left:66px;}
        input:focus{border:2px solid rgb(90,152,210);}
        .item label{position: absolute;left:0;top:5px;}
        input[type=submit]{height:30px;line-height:20px;position:absolute;left:0;background-color: rgb(90,152,210);color:#fff;width:60px;}
        .error-msg{
            color: red;
            font-size: 12px;
            position: absolute;
            bottom: -8px;
            left: 65px;
            width: 329px;
        }
    </style>
</head>
<body>
    <div class="container">
        <form action="#" id="form">
            <div class="item">
                <label for="username">用戶名</label>
                <input type="text" id="username" required pattern="^1[0-9]{10}$">
            </div>
            <div class="item">
                <label for="password">郵箱</label>
                <input type="email" id="email" required>
            </div>
            <input type="submit" value="提交" id="submit">
        </form>
    </div>
    <script>
        function myui(form){
            //阻止默認(rèn)氣泡
            form.addEventListener("invalid",function(e){
                e.preventDefault();
            },true)
            //注意要設(shè)置為true
            //當(dāng)Event對(duì)象的cancelable為false時(shí),表示沒(méi)有默認(rèn)行為,這時(shí)即使有默認(rèn)行為,調(diào)用 preventDefault也是不會(huì)起作用的

            //驗(yàn)證不通過(guò),則阻止表單提交
            form.addEventListener("submit",function(e){
                if(!this.checkValidity()){
                    e.preventDefault();
                }
                
            },true)

            //點(diǎn)擊提交觸發(fā)的事件
            submit.addEventListener("click",function(e){
                var invalids=form.querySelectorAll(":invalid"),
                    errMsgs=form.querySelectorAll(".error-msg"),
                    parent;

                //循環(huán),清除掉上一次添加的所有錯(cuò)誤信息
                for(var i=0;i<errMsgs.length;i++){
                    errMsgs[i].parentNode.removeChild(errMsgs[i]);
                }

                //循環(huán),添加新的錯(cuò)誤信息
                for(var i=0;i<invalids.length;i++){
                    parent=invalids[i].parentNode;
                    /*
                    element.insertAdjacentHTML(position, text);
                    beforebegin: 元素自身的前面。
                    afterbegin: 插入元素內(nèi)部的第一個(gè)子節(jié)點(diǎn)之前。
                    beforeend: 插入元素內(nèi)部的最后一個(gè)子節(jié)點(diǎn)之后。
                    afterend: 元素自身的后面。
                    text是要被解析為HTML或XML,并插入到DOM樹中的字符串

                     */
                    parent.insertAdjacentHTML("beforeend","<div class='error-msg'>"+invalids[i].validationMessage+"</div>");
                }

                //如果存在錯(cuò)誤信息,則給第一個(gè)錯(cuò)誤信息一個(gè)focus
                if(invalids.length>0){
                    invalids[0].focus();
                }
            })
        }
        myui(form);
    </script>
</body>
</html>

 總結(jié)

到此這篇關(guān)于html5默認(rèn)氣泡修改的代碼詳解的文章就介紹到這了,更多相關(guān)html5默認(rèn)氣泡修改內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標(biāo)簽:綏化 阿壩 聊城 赤峰 中山 金昌 盤錦 萍鄉(xiāng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html5默認(rèn)氣泡修改的代碼詳解》,本文關(guān)鍵詞  html5,默認(rèn),氣泡,修改,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html5默認(rèn)氣泡修改的代碼詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于html5默認(rèn)氣泡修改的代碼詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章