html,scroll,button<body style="scroll:no"> <table width="100%" height="100%"> <tr> <td height="10px" id="conditions"></td> </tr> <tr> <td id="Content"></td> </tr> <tr> <td height="10px" id="btns"> <input type="button" id="btnDel" value="删除" /> </td> </tr> </table> </body> 这个表格分为3块 第一个id为conditions,放查询条件。 第二个id为Content,放显示内容。 第三个id为btnDel,放删除按钮。 第一个和第三个宽度可以设置小一点,让内容自己去展开。 html,scroll,button
|