13

我正在尝试使用 https://github.com/desandro/draggabilly提供的 Draggabilly

它在 html 中运行良好。现在,当我尝试将其添加到 wordpress 中时。我在萤火虫控制台中收到以下错误。

TypeError: Argument 1 of Window.getComputedStyle is not an object.
return s.getComputedStyle(t, null)

这是 js 文件的链接 http://draggabilly.desandro.com/draggabilly.pkgd.min.js

4

2 回答 2

2

您正在调用 init 两次。浏览您的代码并删除一个实例。

于 2015-07-02T04:26:22.777 回答
0

我在用 IE8 测试我的项目时收到了这个错误:最后很明显,这种方法不适用于 IE 8!

Error: Object doesn't support this property or method at: http://...

我收到了支持此方法的 FF 的此错误,但我忘记更改window为我的框架窗口对象!

console.log(getComputedStyle(window.document.querySelector('.tip > .tip.top'), ':after').getPropertyValue('left'));
TypeError: Argument 1 of Window.getComputedStyle is not an object.
at: http://...

请注意,即使您的window对象没问题,上述错误也会弹出,但querySelector没有返回任何内容!(我怀疑这是你的情况)。

于 2014-02-27T19:21:02.540 回答