怎么用js获取循环出来的text框里面的值 5
<tralign="center"bgcolor="#FFFFFF"><c:setvar="count"value="0"scope="page"></c:set><c:...
<tr align="center" bgcolor="#FFFFFF">
<c:set var="count" value="0" scope="page"></c:set>
<c:forEach items="${columList}" var="arr" varStatus="index">
<td align="right">${arr[1] }: </td>
<td align="left">
<input type="text" id="date${arr[0] }" name="date${arr[0] }" />
</td>
<c:if test="${(index.index+1) mod 2 == 0 }"> </tr><tr align="center" bgcolor="#FFFFFF"> </c:if>
<c:set var="count" value="${(index.index+1) mod 4}" scope="page"></c:set>
</c:forEach>
<c:set var="count" value="1" scope="page"></c:set>
<td > </td><td > </td>
</tr> 展开
<c:set var="count" value="0" scope="page"></c:set>
<c:forEach items="${columList}" var="arr" varStatus="index">
<td align="right">${arr[1] }: </td>
<td align="left">
<input type="text" id="date${arr[0] }" name="date${arr[0] }" />
</td>
<c:if test="${(index.index+1) mod 2 == 0 }"> </tr><tr align="center" bgcolor="#FFFFFF"> </c:if>
<c:set var="count" value="${(index.index+1) mod 4}" scope="page"></c:set>
</c:forEach>
<c:set var="count" value="1" scope="page"></c:set>
<td > </td><td > </td>
</tr> 展开
展开全部
<!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">
<style type="text/css">
</style>
</head>
<body>
<input type="text" value="第一个值">
<input type="text" value="第二个值">
<input type="text" value="第三个值">
<input type="text" value="第四个值">
<input type="text" value="第五个值">
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
var input = document.getElementsByTagName('input')
for(i=0;i<=input.length;i++)
{
document.write(input[i].value)
}
</script>
</body>
</html>
补充说明:我把页面上所有input的值按顺序输出。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<style type="text/css">
</style>
</head>
<body>
<input type="text" value="第一个值">
<input type="text" value="第二个值">
<input type="text" value="第三个值">
<input type="text" value="第四个值">
<input type="text" value="第五个值">
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
var input = document.getElementsByTagName('input')
for(i=0;i<=input.length;i++)
{
document.write(input[i].value)
}
</script>
</body>
</html>
补充说明:我把页面上所有input的值按顺序输出。
追问
只能是用getElementsByTagName('input');么?因为页面有很多的input啊。。。
追答
for(i=1;i
补充说明: 把需要获取值得text加上有序的ID,让程序去输出,再获取有id值text的总个数,就是for循环的5,。如果用Jquery写会容易得多
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询