<html>
<head>
<style>
#show{
display:none;
}
</style>
</head>
<body>
<button onclick="ha()">12</button>
<div id="show"></div>
</body>
<script>
function ha(){
console.log(document.getElementById("show").style.display)
}
</script>
</html>