jquery监听/检测文本框text改变事件
例子,监测文本框事件改变时,要用bind,两个是有区别的,change只是在失去焦点时触发。
代码示例:
$('#flowfromid').bind("propertychange",function(){
//内容
});
Jquery值改变事件支持火狐和ie浏览器,并且测试通过,绑定后台代码可以做成autocomplete控件。
例子:
代码示例:
$(document).ready(function () {
$("#UnitName").focus(function () {
var bind_name = 'keyup';
if (navigator.userAgent.indexOf("MSIE") != -1)
{ bind_name = 'input propertychange'; }
$(this).bind(bind_name, function () {
Alert(“弹出字符串”);
})
})
});