html5標準事件oninput實現輸入檢測

來源:互聯網
上載者:User

標籤:滑鼠   doctype   change   charset   需求   script   複製   onchange   支援   

       以往我們實現input的輸入監聽用到的無非是onkeyup、onkeydown、onchange,但是這些都有著一些不好的使用者體驗。比如onchange事件只在鍵盤或者滑鼠操作改變對象屬性,且失去焦點時觸發,指令碼觸發無效;而onkeydown、onkeyup在處理複製、粘貼、拖拽、長按鍵(按住鍵盤不放)等細節上並不完善。

       onpropertychange屬性可在某些情況下解決上面存在的問題,不用考慮是否失去焦點,不管js操作還是鍵盤滑鼠手動操作,只要HTML元素屬性發生改變即可立即捕獲到。遺憾的是,onpropertychange為IE專屬的。其他瀏覽器下如果想要實現這一即時監聽的需求,就要用到HTML5中的標準事件oninput,不過IE9以下的瀏覽器是不支援oninput事件的。如果要相容IE9以下瀏覽器,就需要oninput和onpropertychange一起使用。

如下執行個體:

!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="Author" content="神棍、Falost">
        <title>hello world!</title>
        <style type="text/css">
            #box{
                width:100%;
                height:30px;
            }
        </style>
    </head>
    <body>
        <div id="box"></div>
        <input type="text" oninput="Monitor(this)" onpropertychange="Monitor(this)"/>
        
        <script type="text/javascript">
            function Monitor(t){
                console.log(t.value)
                var box = document.getElementById(‘box‘)
                box.innerHTML = ‘你當前輸入的是:‘+ t.value
            }
        </script>
    </body>
</html>


即時監聽input中輸入內容的變化。

 

html5標準事件oninput實現輸入檢測

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.