Google、Firefox……使用函数事件 oninput
IE浏览器使用函数事件 onpropertychange
<input type="text" id="t1" oninput="OnInput (event,this)" onpropertychange="Onpropertychange (event)"/> //函数有两个参数:第一个是事件获取状态,第二个是调用该函数的input对象
//实时获取输入框内容,并判断值是否符合规定 //Google、Firefox…… function OnInput (event,obj) { if(event.target.value < 0 || event.target.value >100) alert("t1输入的数据必须介于【1,100】范围内"); } // IE浏览器 function Onpropertychange (event,obj) { if(event.target.value < 0 || event.target.value >100) alert("t1输入的数据必须介于【1,100】范围内"); }