html中获取value的值怎么获取?

<%@pagelanguage="java"import="java.util.*"pageEncoding="UTF-8"%><%Stringpath=request.... <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<%@taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP 'User_add.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<SCRIPT type="text/javascript">
function add(){
var y= "<%=session.getAttribute("state")%>";
var x=document.getElementById('userVO.state').value);
alert(y);
alert(x);
if(x<y){
alert("您没有这个个权限");
return false;
}else{
return true;
}
}
</SCRIPT>
</head>

<body>
<center>
<table id="__01" background="images/bg.jpg" width="1024" height="600"
border="0">
<tr>
<td colspan="3" width="1024" height="170"></td>
</tr>
<tr>
<td rowspan="6" width="415" height="510"></td>
<td width="194" height="53"></td>
<td rowspan="6" width="415" height="510"></td>
</tr>
<tr>
<td>
<form action="User_save.action">
用户名:
<input type="text" size="16" name="userVO.userName">
<br>
等    级:
<input type="text" size="16" name="userVO.state">
<br>
密    码:
<input type="text" size="16" name="userVO.passworld">
<br>
<input type="submit" value="添加" onclick="add();">
</form>
</td>
</tr>
<tr>
<td width="194" height="53"></td>
</tr>
<tr>
<td width="194" height="35"></td>
</tr>
<tr>
<td width="194" height="53"></td>
</tr>
<tr>
<td width="194" height="281"></td>
</tr>
</table>

</center>

</body>
</html>
我主要是判断这个值有没有我session中的值大 来判断出他的级别
现在value的值没取出来还有在帮我看看我的脚本那样写的话添加还会执行吗?
展开
 我来答
unwmunwm
2012-06-14 · TA获得超过711个赞
知道小有建树答主
回答量:455
采纳率:0%
帮助的人:324万
展开全部
脚本能执行,不过var x=document.getElementById('userVO.state').value);
多了一个右括号。
<input type="text" size="16" name="userVO.state">
为了多个浏览器通用,这样写:
<input type="text" size="16" name="userVO.state" id="userVO.state" />
为了更好的到达功能需求,
var y= "<%=session.getAttribute("state")%>";
var x=document.getElementById('userVO.state').value);

加上以下语句:
y=parseInt(y,10);
x=parseInt(x,10);

if(x<y)判断会更可靠。

提醒:你的<input type="text" size="16" name="userVO.state">没有赋值。脚本取得的值可能为null 或 "" ,会导致程序错误。
更多追问追答
追问
我想 在点击添加的时候取出的值 有什么办法吗
追答
var x=document.getElementById('userVO.state').value;
alert(x);
你这个代码不是已经取出来而且用对话框显示出来了吗?只要点击按钮,就会先执行这个。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式