123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>报警器index</title>
- <script type="text/javascript">
- $(function() {
- loadBjqLeft();
- loadBjqRight();
- });
-
- function loadBjqLeft() {
- huimv.loadPage("bjqLeft", "bjqLeft.htm");
- }
-
- function loadBjqRight() {
- huimv.loadPage("bjqRight", "loadBjqList.htm");
- }
- </script>
- </head>
- <body>
- <table width="100%" cellspacing="0" cellpadding="0">
- <tr>
- <td width="190" class="left_rightline" valign="top" bgcolor="#f7f7f7" height="445px;">
- <div id="bjqLeft"></div>
- </td>
- <td valign="top">
- <div id="bjqRight"></div>
- </td>
- </tr>
- </table>
- </body>
- </html>
|