所以就是这样。
我有 2 个<input>
里面<td>
有无限数量。例如 :
<td>
<input type="text" name="cust_name" onchange="check(this)" />
<input type="hidden" name="cust_id" value="10" />
</td>
<td>
<input type="text" name="cust_name" onchange="check(this)" />
<input type="hidden" name="cust_id" value="12" />
</td>
......
this
在check(this)
包含cust_name
价值。但是我怎样才能获得cust_id
具有相同功能的特定价值呢?( check()
)
划定:
function check(part_element){
console.log($(part_element).val());
console.log(getting particular cust_id value); //here is the part
}