如何用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··· ····
展开
 我来答
han15133268722
推荐于2017-10-13 · TA获得超过536个赞
知道小有建树答主
回答量:250
采纳率:100%
帮助的人:154万
展开全部

两种方式

一种是引用一个jquery,使用jquery选择器,代码如下

$("table td #input的id").val();
其实可以直接
$("#id值").val();

另一种是js,你在input上边加一个id值

document.getElementById("test").value;
srsym
推荐于2017-09-05 · 超过13用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:29.7万
展开全部
<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>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式