これが事実です。
私は無制限の番号を持つ 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
}