要在JavaScript中设置左边框的颜色,请使用borderLeftColor属性。在此属性上为边框设置颜色。
您可以尝试运行以下代码以了解如何设置左边框颜色-
<!DOCTYPE html>
<html>
<head>
<style>
#box {
border: thick solid gray;
}
</style>
</head>
<body>
<div id="box">Demo Text</div>
<br><br>
<button type="button" onclick="display()">Change left border color</button>
<script>
function display() {
document.getElementById("box").style.borderLeftColor = "green";
}
</script>
</body>
</html>