czrzSearchModule.htm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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/czrzSearchModule.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. <input name="mcid" id="mcid" type="hidden" value="$!mcid"/>
  26. <select name="mcmc" id="mcmc" style="display:none; width: 140px;">
  27. <option selected="selected" value="">-牧场名称-</option>
  28. </select>
  29. <input name="zsid" id="zsid" type="hidden" value="$!zsid"/>
  30. <select name="zsmc" id="zsmc" style="display:none; width: 140px;">
  31. <option selected="selected" value="">-猪舍名称-</option>
  32. </select>
  33. <input name="lqid" id="lqid" type="hidden" value="$!lqid"/>
  34. <select name="lqmc" id="lqmc" style="display:none; width: 140px;">
  35. <option selected="selected" value="">-栏期名称-</option>
  36. </select>
  37. <input type="button" style="cursor: pointer;" id="search" callBackFunName="$!callBackFunName" value=" 搜索 " />
  38. </td>
  39. </tr>
  40. </table>
  41. </td>
  42. </tr>
  43. </table>
  44. </body>
  45. </html>