1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>查询模块</title>
- <script type="text/javascript" src="views/xt/czyh/wxbdSearchModule.js"></script>
- <script type="text/javascript">
- //回车搜索
- $(document).keydown(function(event){
- if(event.keyCode == 13)
- execute('search');
- });
- </script>
- </head>
- <body>
- <table width="100%" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td valign="top" style="background-color:#f7f6f6;">
- <table width="99%" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td height="3"></td>
- </tr>
- <tr>
- <td height="25" colspan="2">
- <span>用户名:</span>
- <input type="text" name="yhm" id="yhm" value="$!yhm" size="20" style="display:none;"/>
- <select name="sfbd" id="sfbd" style="display:none; width: 90px;">
- <option selected="selected" value="">-是否绑定-</option>
- <option value="3" #if($!sfbd=='ybd')selected="selected"#end>已绑定</option>
- <option value="0" #if($!sfbd=='wbd')selected="selected"#end>未绑定</option>
- </select>
- <input type="button" style="cursor: pointer;" id="search" callBackFunName="$!callBackFunName" value=" 搜索 " />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|