标签:property val input 焦点 ie浏览器 cti library 键盘 rac
摘自:http://blog.csdn.net/spy19881201/article/details/25537225
示例:
<!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>
js 实现:
$(function(){ $(‘#username‘).bind(‘input propertychange‘, function() { $(‘#result‘).html($(this).val().length + ‘ characters‘); }); })
oninput,onpropertychange,onchange的用法:
1、onchange触发事件必须满足两个条件:
a)当前对象属性改变,并且是由键盘或鼠标事件激发的(脚本触发无效)
b)当前对象失去焦点(onblur);
2、onpropertychange的话,只要当前对象属性发生改变,都会触发事件,但是它是IE专属的;
3、oninput是onpropertychange的非IE浏览器版本,支持firefox和opera等浏览器,但有一点不同,它绑定于对象时,并非该对象所有属性改变都能触发事件,它只在对象value值发生改变时奏效。
标签:property val input 焦点 ie浏览器 cti library 键盘 rac
原文地址:http://www.cnblogs.com/cnblogs-jcy/p/7029028.html