fillStyle not a function(fillStyle 不是函数)
问题描述
我收到一个不寻常的错误:
I'm getting an unusual error:
ctx_wrap.fillStyle 不是函数
ctx_wrap.fillStyle is not a function
在这一行:
ctx_wrap.fillStyle('#b8b8b8');
在这里:
...
this.paint = function() {
self.path(ctx_wrap);
if (!isOver) {
ctx_wrap.fillStyle('#b8b8b8');
} else {
ctx_wrap.fillStyle('#d6d6d6');
}
ctx_wrap.fill()
ctx_wrap.stroke();
};
...
奇怪的是,如果我注释掉那行,下面的行就可以了.这两行几乎相同,但第一行产生错误,第二行有效:
What is strange is that, if I comment out that line, the line beneath works. These two lines are nearly identical, but the first one produces the error and the second one works:
ctx_wrap.fillStyle('#b8b8b8');
ctx_wrap.fillStyle('#d6d6d6');
为什么第一行会产生错误?
Why would the first line produce the error?
推荐答案
尝试使用 ctx_wrap.fillStyle = "#COLOR"
.
第二个不起作用,控制台只是停在第一个并吐出错误,因为它从代码行中吓坏了.
The second one does not work, the console just stops at the first one and spits out the error, because it freaked out from the line of code.
这篇关于fillStyle 不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:fillStyle 不是函数
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01