用于开发的一排按钮的结构.txt
资源名称:OA.rar [点击查看]
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:2k
源码类别:
OA系统
开发平台:
Java
- //最外层是一个TABLE其ID=queryToolbar,此表只有一行
- //id=fcPage的TD包含五个INPUT,用于分页界面.
- //id=fcShowAll的TD用于显示全部的特定作用.
- //id=fcButton的TD共有五个,是供用户使用的功能按钮.可用fcButton[0~4]的方式存取.
- //例如:要使按钮的位置变化只需:queryToolbar.style.top=500 这样的命令即可.
- <table border=1 id=queryToolbar bordercolordark="#ffe5d5" bordercolorlight="#808080" style="display:none;LEFT: 5px; POSITION: absolute; TOP: 3px" cellpadding=0 cellspacing=0>
- <tr>
- <td style="display:none" id=fcPage >
- <INPUT class="buttonpage" type=button value="|<" onclick=fc_prevpage0()>
- <INPUT class="buttonpage" type=button value="<" onclick=fc_prevpage()>
- <INPUT class="buttonpageno" disabled style="width:40" value="">
- <INPUT class="buttonpage" type=button value=">" onclick=fc_nextpage()>
- <INPUT class="buttonpage" type=button value=">|" onclick=fc_nextpage0()>
- </td>
- <td style="display:none" id=fcShowAll>
- <INPUT class="button" type=button value="显示全部" onclick=fc_ShowAll() >
- </td>
- <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
- <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
- <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
- <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
- <td><INPUT id=fcButton class="button" style="display:none" type=button ></td>
- </tr>
- </table>