在JavaScript中使用flex属性来设置项目相对于其余项目的长度。您可以尝试运行以下代码以使用JavaScript实现flex属性-
<!DOCTYPE html>
<html>
<head>
<style>
#box {
border: 1px solid #000000;
width: 300px;
height: 400px;
display: flex;
}
</style>
</head>
<body>
<div id = "box">
<div style = "background-color:orange;">DIV1</div>
<div style = "background-color:blue;">DIV2</div>
<div style = "background-color:yellow;">DIV3</div>
</div>
<button onclick = "display()">Set</button>
<script>
function display() {
var a = document.getElementById("box");
var b = a.getElementsByTagName("DIV");
var j ;
for (j = 0; j < b.length; j++) {
b[j].style.flex = "1";
}
}
</script>
</body>
</html>