我从一个 Web 应用程序重定向到第二个(asp + js)。在 chrome 浏览器中一切正常,但在 IE 中出现错误。
我在这里阅读了一个解决方案:https ://code.google.com/p/explorercanvas/wiki/Instructions
所以我添加了这个:
type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js
type="text/javascript" src="excanvas.min.js"
并像这样声明 canvas 和 cxt:
canvas = document.createElement("gameCanvas");
G_vmlCanvasManager.initElement(canvas);
var cxt= canvas.getContext("2d");
var ctx= canvas.getContext("2d");
但我仍然收到此错误:
(getcontext 对象不支持该属性或方法) http://oi42.tinypic.com/25t9oix.jpg
对我来说奇怪的情况是,在 IE 中,当我打开 html 应用程序文件时,我没有收到错误并且应用程序运行良好。但是当我从本地主机(IIS)中的应用程序重定向到这个文件时,我遇到了所有这些问题。
你知道我还能做什么吗?