ie11中未定义FileReader和JSON对象

时间:2013-12-13 22:19:38

标签: javascript json filereader internet-explorer-11

每当尝试在页面初始化时使用FileReader和JSON打开运行javascript代码的页面时,ie11报告“未定义FileReader”,稍后“JSON未定义”。 HTML文件的头部如下:

<!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和Chrome中一切正常。有什么想法吗?

1 个答案:

答案 0 :(得分:6)

添加<meta http-equiv="X-UA-Compatible" content="IE=edge" />作为标题的第一个标记,以确保。 IE喜欢进入兼容模式,即使在某些情况下存在HTML5文档类型(特别是在计算机位于域中时的Intranet文件中)。

您可以使用开发人员工具(F12)检查您正在运行的模式。