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的值没取出来还有在帮我看看我的脚本那样写的话添加还会执行吗? 展开
<%
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的值没取出来还有在帮我看看我的脚本那样写的话添加还会执行吗? 展开
展开全部
脚本能执行,不过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 或 "" ,会导致程序错误。
多了一个右括号。
<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);
你这个代码不是已经取出来而且用对话框显示出来了吗?只要点击按钮,就会先执行这个。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |