我不能得到.change()在Internet Explorer 9中它可以在所有其他瀏覽器(我已經試過)的輸入工作,但不是IE 9獲取「變」在IE9
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$('.myInput').change(function() {
alert("hi");
});
});
</script>
<input class="myInput" />
</body>
</html>
有沒有想法?
你對「it works」的定義是什麼? – Jon
您正在使用jQuery 1.4.4版本..嘗試獲取最新版本,例如1.6.3 – Samich
您還缺少'DOCTYPE'聲明,您最好添加它。 –