xxdySearchModule.htm 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>查询模块</title>
  6. <script type="text/javascript" src="views/xt/czyh/xxdySearchModule.js"></script>
  7. <script type="text/javascript">
  8. // 回车搜索
  9. $(document).keydown(function(event){
  10. if (event.keyCode == 13)
  11. execute('search');
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <table width="100%" align="center" cellpadding="0" cellspacing="0">
  17. <tr>
  18. <td valign="top" style="background-color:#f7f6f6;">
  19. <table width="99%" align="center" cellpadding="0" cellspacing="0">
  20. <tr>
  21. <td height="3"></td>
  22. </tr>
  23. <tr>
  24. <td height="25" colspan="2">
  25. <span id="yhxmtxt"></span>
  26. <input id="yhxm" name="yhxm" value="$!yhxm" size="20" style="display:none; width: 160px;"/>
  27. <input type="button" style="cursor: pointer;" id="search" callBackFunName="$!callBackFunName" value=" 搜索 " />
  28. </td>
  29. </tr>
  30. </table>
  31. </td>
  32. </tr>
  33. </table>
  34. </body>
  35. </html>