用于开发的一排按钮的结构.txt
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. //最外层是一个TABLE其ID=queryToolbar,此表只有一行
  2.      //id=fcPage的TD包含五个INPUT,用于分页界面.
  3.      //id=fcShowAll的TD用于显示全部的特定作用.
  4.      //id=fcButton的TD共有五个,是供用户使用的功能按钮.可用fcButton[0~4]的方式存取.
  5.      //例如:要使按钮的位置变化只需:queryToolbar.style.top=500 这样的命令即可.
  6. <table border=1 id=queryToolbar bordercolordark="#ffe5d5" bordercolorlight="#808080" style="display:none;LEFT: 5px; POSITION: absolute; TOP: 3px" cellpadding=0 cellspacing=0>
  7.   <tr>
  8.      <td style="display:none" id=fcPage >
  9.        <INPUT class="buttonpage" type=button value="|<" onclick=fc_prevpage0()>
  10.        <INPUT class="buttonpage" type=button value="<" onclick=fc_prevpage()>
  11.        <INPUT class="buttonpageno" disabled  style="width:40" value="">
  12.        <INPUT class="buttonpage" type=button value=">" onclick=fc_nextpage()>
  13.        <INPUT class="buttonpage" type=button value=">|" onclick=fc_nextpage0()>
  14.      </td>
  15.      
  16.      <td style="display:none" id=fcShowAll>
  17.        <INPUT class="button" type=button value="显示全部" onclick=fc_ShowAll() >
  18.      </td>
  19.      
  20.      <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
  21.      <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
  22.      <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
  23.      <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
  24.      <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
  25.   </tr>
  26. </table>