我有一個簡單的測試頁面,但是突然間,它在IE中不起作用。任何人都可以看到有什麼事嗎?IE沒有看到jQuery?
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script language='javascript'>
$(document).ready(function()
{
alert('here');
}); //end program
</script>
</head>
<body>
</body>
</html>
如果您的測試頁面是不是在服務器上,而是從本地文件夾查看,IE會常常不包括外部JavaScript。這可能是這種情況。 –
我將它改爲指向本地文件: – LauraNMS
但仍然沒有任何反應。 – LauraNMS