|
但当页面中有多个value值时,各个value值都不同,我想取其中一个时,那应该怎么取呀?如以下原代码中,有三个value值,我想取第二个:
<td nowrap>用户帐号列表</td>
</tr>
<tr height="20" bgcolor="#FFFFFF" class="p1">
<td nowrap align="left">
<input type="radio" name="userAccountId_0" DISNAME="用户帐号" value="10405">
</td>
<td nowrap>
<!--用户帐号名称-->
testlds02
<input type="hidden" name="userAccount_0" value="testlds02">
</td>
</tr>
<tr height="20" bgcolor="#FFFFFF" class="p1">
<td nowrap align="left">
<input type="radio" name="userAccountId_1" DISNAME="用户帐号" value="10406">
</td>
<td nowrap>
<!--用户帐号名称-->
testlds03
<input type="hidden" name="userAccount_1" value="testlds03">
</td>
</tr>
注意:这三个值是变化的,都是以value="xxxxx",x为数字
__________________________________________
再次请教OA_BAY和各位:
<input type="hidden" name="userAccount_0" value="testldsXX">
XX代表代码中有多个不同的值。
我要取其中一个值,如testlds03,那该如何做?
请注意:testlds03的对象类型为hidden,即不在页面上显示,得查看源文件才能看到
[ Last edited by girl04 on 2005-11-4 at 10:49 ] |
|