当前位置: 代码迷 >> JavaScript >> 请教怎么不显示一个button
  详细解决方案

请教怎么不显示一个button

热度:97   发布时间:2012-03-27 13:44:24.0
请问如何不显示一个button?
<input     type= "button "   name= "button1 "   >
现在不想显示这个button,就是说,不想在屏幕上看到,请问如何实现呢?
是不是必须要把这个button放到一个div里面,再通过控制div的不显示,来实现呢?

谢谢大家阿。


------解决方案--------------------
<input type= "button " name= "button1 " style= "display:none ">
------解决方案--------------------
style= "display:none "
------解决方案--------------------
<input type= "button " name= "button1 " style= "width:1px;height:1px " onclick=alert( "sdfsdf ")>
  相关解决方案