<input type="button" value="讲解" style="VISIBILITY: hidden" name="aaaa">
<input type=button  onclick="aa()"><script language=javascript>
function aa() 
{aaaa.style.visibility  = "visible";}</script>

解决方案 »

  1.   

    <input type="button" value="讲解" style="VISIBILITY: hidden" name="aaaa">
    <input type=button  onclick="test()"><script language=javascript>
    var flag=true;
    function test() 
    {aaaa.style.visibility  =flag? '':'hidden';
    flag=!flag;
    }</script>
      

  2.   

    <input type="button" name="b1" value="讲解" style="VISIBILITY: hidden">
    <input type="button" value="show" onclick="b1.style.visibility=''">
      

  3.   

    aaaa.style.visibility  = "visible";
      

  4.   

    <form name=myform>
    <input type="button" value="讲解" name=bt style="VISIBILITY: hidden">
    <input type=button value=button onclick="document.myform.bt.style.visibility='visible'">
    </form>
      

  5.   

    晕~~~我忘记说了,我有N个<input  type="button"  value="讲解"  style="VISIBILITY:  hidden">  要实现一个按钮,能够全部显示出来。
      

  6.   

    晕~~~我忘记说了,我有N个<input  type="button"  value="讲解"  style="VISIBILITY:  hidden">  要实现一个按钮,能够全部显示出来。
      

  7.   

    <html><head></head><body>
    <script>
    function check()
    {
      var a=document.getElementsByName("b1")
      for(var i=0;i<a.length-1;i++)
      {
        a[i].style.visibility=''
      }}
    </script>
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input type="button" onclick="check()"></body></html>
      

  8.   

    //try this:要实现一个按钮,能够全部显示出来。
    <html><head></head><body>
    <script>
    function check()
    {
      var a=document.getElementsByName("b1")
      for(var i=0;i<a.length-1;i++)
      {
        a[i].style.visibility=''
      }}
    </script>
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input  name="b1" type="button"  value="讲解"  style="VISIBILITY:  hidden">
    <input type="button" onclick="check()"></body></html>
      

  9.   

    是不是用ID不能够找到呢?一定要用NAME???
      

  10.   

    也可以用ID呀
    只是改成document.getElementsById("")就成了
      

  11.   

    谢谢~` zhaoweiwei(轩辕大侠)