我不知道这个简单的javascript哪里出错了
<!DOCTYPE html>
<html>
<head>
<title> </title>
<script>
function changeColor() {
var elem = document.getElementById("para1");
if (elem.style.color == black) {
elem.style.color = blue
}
else if (elem.style.color == blue) {
elem.style.color = red
}
else if (elem.style.color == red) {
elem.style.color = black
}
}
</script>
</head>
<body>
<p id="para1"> Some text here</p>
<button onclick='changeColor();'>Change!</button>
<!-- <button onclick='changeColor("red");'>red</button> -->
</body>
</html>
使用 javascript 比 VBA 更难实现调试 - 我使用它。