私のCSS:
#a_x200{
visibility: hidden;
width: 200px;
height: 200px;
background-color: black;
}
私のJS:
<script type="text/javascript">
function show(id) {
document.getElementById(id).style.display = 'block';
}
</script>
私のHTML
<div id="a_x200">asd</div>
<innput type="button" class="button_p_1" onclick="show('a_x200');"></input>
動作しない私は何かを逃したと思います!