日期:2014-05-20 浏览次数:20822 次
<html:select property="jues" value="11"> <html:option value="11">基本查询</html:option> <html:option value="12">综合查询</html:option> <html:option value="13">权限管理</html:option> </html:select> <a style="cursor: pointer;color:blue" onclick="window.location='<%=request.getContextPath()%>/Login.do?step=step3&qxadd=?'">授予该权限</a>
<html:select [color=#FF0000]styleId="jues"[/color] property="jues" value="11"> <html:option value="11">基本查询</html:option> <html:option value="12">综合查询</html:option> <html:option value="13">权限管理</html:option> </html:select> <a style="cursor: pointer;color:blue" onclick="test();">授予该权限</a> <script> function test(){ var jues=document.getElementById("jues").value; window.location='<%=request.getContextPath()%>/Login.do?step=step3&qxadd='+jues; } </script>