javascript – 未在ie11中定义的FileReader和JSON对象

每当在页面初始化时尝试使用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中一切正常.有任何想法吗?

解决方法:

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

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

上一篇:AC日记——C’s problem(c) TYVJ P4746 (清北学堂2017冬令营入学测试第三题)


下一篇:CABasicAnimation 基本动画 分类: ios技术 2015-07-16 17:10 132人阅读 评论(0) 收藏