wxbdSearchModule.htm 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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/wxbdSearchModule.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>用户名:</span>
  26. <input type="text" name="yhm" id="yhm" value="$!yhm" size="20" style="display:none;"/>
  27. <select name="sfbd" id="sfbd" style="display:none; width: 90px;">
  28. <option selected="selected" value="">-是否绑定-</option>
  29. <option value="3" #if($!sfbd=='ybd')selected="selected"#end>已绑定</option>
  30. <option value="0" #if($!sfbd=='wbd')selected="selected"#end>未绑定</option>
  31. </select>
  32. <input type="button" style="cursor: pointer;" id="search" callBackFunName="$!callBackFunName" value=" 搜索 " />
  33. </td>
  34. </tr>
  35. </table>
  36. </td>
  37. </tr>
  38. </table>
  39. </body>
  40. </html>