gpt4 book ai didi

javascript - HTML/CSS/JS : Simple div not displaying

转载 作者:行者123 更新时间:2023-11-28 16:10:00 25 4
gpt4 key购买 nike

我只是想了解为什么 #div 元素没有出现在下面的简单代码中:

<!DOCTYPE html>
<html>
<body>

<div id="div"></div>


<style>
#div{
color:black;
width:50px;
height:50px;
}
</style>
<script>
function algo(){
alert("ALGO");
}

document.querySelector("#div").onclick = algo;
</script>
</body>
</html>

这是 fiddle :

http://jsfiddle.net/26pkt2y6/

最佳答案

color 表示前景色。由于没有可显示的文本,div 似乎没有显示。设置 background 以查看 div。

function algo() {
alert("ALGO");
}

document.querySelector("#div").onclick = algo;
#div {
color: black;
width: 50px;
height: 50px;
background: #000;
}
<div id="div"></div>

关于javascript - HTML/CSS/JS : Simple div not displaying,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28775990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com