我是靠谱客的博主 平淡楼房,最近开发中收集的这篇文章主要介绍用js控制表格的隐藏与显示,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

-----------------------------------------------------------
<script>  
  function   show()  
  {  
  if   (t2.style.display=="none")  
  {  
  t2.style.display=""  
  //t3.style.display="none"  
  }  
  else  
  {  
  t2.style.display="none"  
  //t3.style.display=""  
  }  
   
  }  
  </script>  
  <table   name="t1"   border="2">  
      <tr>  
          <td>  
              <form   name="form1">  
                  <input   type="radio"   οnclick="show()">显示/影藏  
              </form>  
          </td>  
      </tr>  
  </table>  
  <table   id="t2"   border="2"   style="display:none">  
      <tr>    
          <td>t2</td>  
      </tr>  
  </table>  
  <table   id="t3"   border="2">  
      <tr>    
          <td>t3</td>  
      </tr>  
  </table>  
  <table   id="t4"   border="2">  
      <tr>    
          <td>t4</td>  
      </tr>  
  </table>  
----------------------------------------------------------------------
<table   name="t1"     width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>  
          <td>  
              <form   name="form1"   method="post"   action="">  
                  <input   type="checkbox"   name="radiobutton"   value="radiobutton"   οnclick="t2.style.display=checked?'':'none'"   checked>  
                  显示/隐藏            
              </form>  
          </td>  
      </tr>  
  </table>  
  <table   id="t2"   width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>    
          <td>&nbsp;2</td>  
      </tr>  
  </table>  
  <table   name="t3"     width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>    
          <td>&nbsp;3</td>  
      </tr>  
  </table>  
  <table   name="t4"   width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>    
          <td>&nbsp;4</td>  
      </tr>  
  </table>  
-----------------------------------------------------------------------
<table   name="t1"     width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>  
          <td>  
              <form   name="form1"   method="post"   action="">  
                  <input   type="checkbox"   name="radiobutton"   value="radiobutton"   οnclick="t2.style.display=checked?'':'none';t3.style.display=checked?'none':''">  
                  显示/隐藏                
              </form>  
          </td>  
      </tr>  
  </table>  
  <table   id="t2"   width="100%"   border="0"   cellspacing="0"   cellpadding="0"   style="display:none">  
      <tr>    
          <td>&nbsp;2</td>  
      </tr>  
  </table>  
  <table   id="t3"     width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>    
          <td>&nbsp;3</td>  
      </tr>  
  </table>  
  <table   name="t4"   width="100%"   border="0"   cellspacing="0"   cellpadding="0">  
      <tr>    
          <td>&nbsp;4</td>  
      </tr>  
  </table>
---------------------------------------------------------------------------

<table id="sbr">
<tr>
<td>sdaf</td>
</tr>
<table>
<input name=button1 type=button value="按" οnclick=show()>
<script language=javascript>
function show()
{
var obj=document.getElementById("sbr")
obj.style.display=(obj.style.display=="")?"none":""
}
</script>
----------------------------------------------------------------------

最后

以上就是平淡楼房为你收集整理的用js控制表格的隐藏与显示的全部内容,希望文章能够帮你解决用js控制表格的隐藏与显示所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(27)

评论列表共有 0 条评论

立即
投稿
返回
顶部