4 回答
TA贡献1797条经验 获得超6个赞
但我收到此错误:
未捕获的类型错误:无法读取 null 的属性“样式”
尽管我的CSS中有这个:
.canvas .button-box button {
border-radius: 2px;
width: 10vw;
margin-top: 0.5vh;
background-color: whitesmoke;
}
有什么建议吗?
TA贡献1934条经验 获得超2个赞
给出以下 HTML
<button id='Bx' type="button" onclick='toggleClickedBuz("Bx", "#Bx")'>Bx</button>
您将#Bx
作为 id 参数传递给切换函数。这会导致 js 调用:
document.getElementById("#Bx");
但该getElementById
函数不需要#
前缀。尝试将您的 HTML 更改为
<button id='Bx' type="button" onclick='toggleClickedBuz("Bx", "Bx")'>Bx</button>
修复您当前的问题👍
TA贡献1803条经验 获得超3个赞
很简单,你不需要#in toggleClickedBuz("Bx", "#Bx"). 放id无#. 该函数getElementById()已经引用了 id。所以你不需要指定使用#.
你的 HTML 应该是这样的
<button id='Bx' type="button" onclick='toggleClickedBuz("Bx", "Bx")'>Bx</button>
<button id='By' type="button" onclick='toggleClickedBuz("Bx", "Bx")'>By</button>
<button id='Bz' type="button" onclick='toggleClickedBuz("Bx", "Bx")'>Bz</button>
TA贡献1966条经验 获得超4个赞
您不需要#在按钮中。这么多就足够了:
<button id='Bx' type="button" onclick='toggleClickedBuz("Bx","Bx")'>Bx</button>
<button id='By' type="button" onclick='toggleClickedBuz("Bx","Bx")'>By</button>
<button id='Bz' type="button" onclick='toggleClickedBuz("Bx","Bx")'>Bz</button>
#是一个 CSS 选择器,用于选择 HTMLid元素。您可以通过以下方式在 CSS 中引用它们:
#Bx {
color: #AAAAAA;
}
- 4 回答
- 0 关注
- 101 浏览
添加回答
举报