欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决IE7 IE8的input不触发onchange事件

程序员文章站 2022-03-06 09:08:50
...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<input type="text" id="input1" >
<div id="output" ></div>
<script type="text/javascript">
$('#input1').click(function () {
    // Cause the change() event
    // to be fired in IE8 et. al.
    this.blur();
    this.focus();
});
$('#input1').change(function() {
	change();
});
function change(){
	$("#output").html($("#input1").val());
}
</script>
</body>
</html>

 

相关标签: html ie