// 判断其中任意一个文本框的值是否被修改
// 绑定事件
// 为界面上的所有元素添加focusin和focusout事件,
// 用于判断用户是否修改了该值
function bindEvent() {
var temp;
$("#cplx,#gg,#hth,#zs,#zl").bind({
focusin : function() {
// 取得当前元素的id
// alert(this.id);
// alert("获得焦点时的值是:"+$(this).val());
temp = $.trim($(this).val());
},
focusout : function() {
// alert("失去焦点时的值是:"+$(this).val());
var lastValue = $.trim($(this).val());
var yh = $.trim($("#yh").val());
if (yh) {
if (temp != lastValue && null != lastValue
&& "" != lastValue) {
// alert("值改变了!");
$("#jg").val("异常");
$("#jg").css({
"color" : "red"
});
}
}// else {
// alert("没有变!");
// $("#jg").val("正常");
// }
}
});
}
Jquery判断其中任意一个文本框的值是否被修改
最新推荐文章于 2021-09-22 21:55:35 发布