如何用js取得table中td里面input的id或者name名称中指定的内容
<tr><td><inputtype=textname=rel_order_code[0]/></td></tr><tr><td><inputtype=textname=...
<tr>
<td><input type=text name=rel_order_code[0] /></td>
</tr>
<tr>
<td><input type=text name=rel_order_code[2] /></td>
</tr>
<tr>
<td><input type=text name=rel_order_code[3] /></td>
</tr>
<tr>
<td><input type=text name=rel_order_code[4] /></td>
</tr>
这里要取到 例如 第一行的0,第二行的2,第三行的3··· ···· 展开
<td><input type=text name=rel_order_code[0] /></td>
</tr>
<tr>
<td><input type=text name=rel_order_code[2] /></td>
</tr>
<tr>
<td><input type=text name=rel_order_code[3] /></td>
</tr>
<tr>
<td><input type=text name=rel_order_code[4] /></td>
</tr>
这里要取到 例如 第一行的0,第二行的2,第三行的3··· ···· 展开
展开全部
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script type="text/javascript">
function getName(textBox)
{
alert(textBox.name.substring(textBox.name.indexOf('[') + 1,textBox.name.indexOf(']')));
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div >
<table>
<tr>
<td><input type="text" name="rel_order_code[0]" onclick="getName(this)" /></td>
</tr>
<tr>
<td><input type="text" name="rel_order_code[2]" onclick="getName(this)" /></td>
</tr>
<tr>
<td><input type="text" name="rel_order_code[3]" onclick="getName(this)" /></td>
</tr>
<tr>
<td><input type="text" name="rel_order_code[4]" onclick="getName(this)" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>
<head runat="server">
<title>无标题页</title>
<script type="text/javascript">
function getName(textBox)
{
alert(textBox.name.substring(textBox.name.indexOf('[') + 1,textBox.name.indexOf(']')));
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div >
<table>
<tr>
<td><input type="text" name="rel_order_code[0]" onclick="getName(this)" /></td>
</tr>
<tr>
<td><input type="text" name="rel_order_code[2]" onclick="getName(this)" /></td>
</tr>
<tr>
<td><input type="text" name="rel_order_code[3]" onclick="getName(this)" /></td>
</tr>
<tr>
<td><input type="text" name="rel_order_code[4]" onclick="getName(this)" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询