gpt4 book ai didi

javascript - 类型错误 : Invalid invocation

转载 作者:行者123 更新时间:2023-11-28 03:44:24 26 4
gpt4 key购买 nike

scope.width = element[0].getBoundingClientRect();

抛出以下错误

TypeError: 'get x' called on an object that does not implement interface DOMRect. error in firefox and Invalid invocation in chrome

谁能解释一下这是什么?

最佳答案

简单,Element.getBoundingClientRect()

是 DOMRect 接口(interface)的一部分的方法。为了使用它,您需要在实现 DOMRect 接口(interface)的元素上调用它,即 Canvas 。

您选择的所选元素(在本例中为 DropDown)未实现 DOMRect 接口(interface),因此无法使用其方法 getBoundingClientRect

因此错误:

ypeError: 'get x' called on an object that does not implement interface DOMRect. error in firefox and Invalid invocation in chrome

您不能在下拉菜单上使用此方法,除非您修改了原型(prototype),但不建议这样做。

关于javascript - 类型错误 : Invalid invocation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48637542/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com