2013-12-13 48 views
3

每次嘗試在頁面初始化時使用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和鉻。有任何想法嗎?

+0

看起來你正在訪問在兼容模式下您的網站。從IE10開始支持FileReader和JSON。檢查您的IE兼容性設置。並遵循Jan Schejbal對meta標籤的建議。 –

回答

5

<meta http-equiv="X-UA-Compatible" content="IE=edge" />添加爲標頭的第一個標籤。即使在某些情況下存在HTML5文檔類型(尤其是在計算機處於域中時的Intranet文件)時,IE也喜歡進入兼容模式。

可以使用開發工具(F12)檢查正在運行什麼模式。

+0

如果我絕對要使用content =「IE = 9」,是否有解決方案? – tremor