码迷,mamicode.com
首页 > Web开发 > 详细

js 实时监听input中值变化

时间:2020-06-30 20:58:31      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:san   UNC   nap   switch   javascrip   bind   with   set   phone   

<!DOCTYPE html>
<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‘);
});

})

  

$(document).ready(function () {
    $(‘#phonenum,#verifycode‘).bind(‘input propertychange‘,$(‘#verifycode‘).bind(‘input propertychange‘), function(){
        btnSwitch()
        btnApplySwith()
    })
})

  

js 实时监听input中值变化

标签:san   UNC   nap   switch   javascrip   bind   with   set   phone   

原文地址:https://www.cnblogs.com/deepalley/p/13215657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!