每次嘗試在頁面初始化時使用FileReader和JSON打開一個運行javascript代碼的頁面,即ie11報告「FileReader未定義」以及稍後的「JSON未定義」。 HTML文件的頭像如下:未在ie11中定義的FileReader和JSON對象
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>LogViewer</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="css/slick.grid.css" type="text/css"/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js" type="text/javascript"></script>
</head>
一切工作正常FF和鉻。有任何想法嗎?
看起來你正在訪問在兼容模式下您的網站。從IE10開始支持FileReader和JSON。檢查您的IE兼容性設置。並遵循Jan Schejbal對meta標籤的建議。 –