我在我的网站上使用hammer.js,它在Chrome上工作得很好,但不能在IE11上工作。
我收到了这个错误:
第25行第9栏未处理的例外情况 http://localhost:59764/js/hammer.js
0x800a01b6 - JavaScript运行时错误:对象不支持属性 或方法'创建'
这是在hammer.js文件中的这个函数。
function h(a, b, c) {
var d, e = b.prototype;
d = a.prototype = Object.create(e),
d.constructor = a,
d._super = e,
c && f(d, c)
}
有办法解决这个问题吗?