我用这个onclick事件制作了一个图像
onclick="document.getElementById('custom-select span').style.border-bottom-radius ='0px';"
答案 0 :(得分:2)
border-bottom-radius
不是JavaScript中的有效标识符。请改用borderBottomRadius
。
除此之外,你的元素的ID真的是custom-select span
吗?您不应在ID中添加空格 - 它们在那里无效,因此可能会在某些浏览器中出现问题。