以下是我為大家整理的js 即時監聽input中位數變化,有興趣的同學可以去看看。 92cfa01eedf44f26d6fb4a7d3d19b49a#
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>RunJS</title> <script id="jquery_183" type="text/javascript" class="library" src="/js/sandbox/jquery/jquery-1.8.3.min.js"></script> </head> <body> <h1 > 实时监测input中值的变化 </h1> <input type="text" id="username" autoComplete='off'> <div id="result"></div> </body> </html>
$(function(){ $('#username').bind('input propertychange', function() { $('#result').html($(this).val().length + ' characters'); }); })
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
以上是有關js 即時監聽input中位數變化(圖文教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!