我创建了一个带有一个按钮的简单html页面,该页面在单击时会更改其颜色:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<button onclick="if (this.style.backgroundColor == 'Red') {
this.style.backgroundColor = 'Green'
}
else {
this.style.backgroundColor = 'Red'
}
alert(this.style.backgroundColor)">
ok
</button>
</body>
</html>
对我而言,
alert(this.style.backgroundColor)
返回红色而不是红色使我感到惊讶。为什么?有一个作业this.style.backgroundColor = 'Red'
,在该红色中以大写字母开头。 最佳答案
CSS样式不会保存为文字字符串,而是会转换为该样式的内部规范表示。颜色样式不区分大小写,规范表示形式为小写。
关于javascript - 为什么javaScript中的字符串分配不区分大小写?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23215963/