以下是代码
<style type="text/css">
#mydiv{ margin:0 auto;padding:0;width:250px;height:100px; border:1px solid threedshadow;display:none;}
</style>
<script type="text/javascript">
function show()
{
var div=document.getElementById('mydiv');
div.style.display == "none" ? "block" : "none";
}
</script>
<input type="button" onclick="show()" value="show"/>
<div id="mydiv">
Run Code Online (Sandbox Code Playgroud)
此代码不起作用任何人都可以帮助我!