📄 kcquest1.jsp
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<title>商品信息查询</title>
<link href="../CSS/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style2{color: #333333}
-->
</style>
<body>
<%
//session.removeAttribute("qu");
//request.getAttribute("qu");
%>
<table width="590" border="0" cellspacing="-2" cellpadding="-2">
<tr height="6"><td>
</td>
</tr>
<tr bgcolor="#FFB13E">
<td height="25" colspan="6" class="style2">
当前位置:库存管理> 库存查询 >>></td>
</tr>
<tr><td valign="top" height="83">
<table width="590" border="0" cellspacing="-2" cellpadding="-2">
<tr><td width="590" height="43" align="Top">
<form name="form1" method="POST" action="kcquest.jsp" target="MainFrame">
<div align="center">请选择查询条件:
<select name="cif">
<option value="spname" selected>商品名称</option>
<option value="jc">简称</option>
<option value="cd">产地</option>
<option value="kcsl">库存数量</option>
</select>
<select name="ccif">
<option value="=" selected> 等于</option>
<option value="<">小于</option>
<option value="LIKE">LIKE</option>
<option value="ALL">ALL</option>
</select>
<%request.setCharacterEncoding("gb2312");%>
<input type="text" name="qvalue">
<input name="submit1" type="submit" class="btn_grey" value="查询" onclick="aa()">
<input name="submit2" type="submit" class="btn_grey" value="显示全部数据" onclick="listall()">
</div>
</form>
</td></tr>
</table>
</td></tr>
</table>
</body>
</html>
<script language='JavaScript'>
function listall()
{
form1.ccif.value="ALL";
window.location.reload();
form1.submit();}
function aa()
{
window.location.reload();
form1.submit();
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -