我使用下面的代碼:對象不支持屬性或方法「的indexOf」
<html>
<head>
<title></title>
<script src="jquery-3.2.0.js"></script>
</head>
<body>
<script type="text/javascript">
$(window).load(function() {
alert('Window loaded');
});
$(document).ready(function() {
alert('DOM Loaded and ready');
});
</script>
</body>
</html>
它如此簡單,但我得到的錯誤
"Object doesn't support property or method 'indexOf'".
我使用Internet Explorer
這是什麼原因?
你用什麼版本的IE,因爲IE <9不支持的indexOf。嘗試'inArray' –
使用jQuery版本1.x舊版本的ie – madalinivascu