私はテーブルを持っています、
<table border="1" id="hide">
<tr id="col">
<th>Company Ticker</th>
<th>SubordinationID</th>
<th>Currency</th>
<th>ThreeM</th>
<th>SixM</th>
<th>NineM</th>
<th>OneY</th>
<th>TwoY</th>
<th>FiveY</th>
<th>TenY</th>
<th>FifteenY</th>
<th>TwentyY</th>
<th>ThirtyY</th>
</tr>
<%
Connection connection2 = ConnectionFactory.getConnection();
Statement statement2 = connection.createStatement();
ResultSet resultSet2 = statement
.executeQuery("select * from CDSCURVE");
%>
<tr id="row">
<td id="a">Dummy1</td>
<td id="b">Dummy2</td>
<td id="c">Dummy3</td>
<td id="d">Dummy4</td>
<td id="e">Dummy5</td>
<td id="f">Dummy6</td>
<td id="g">Dummy7</td>
<td id="h">Dummy8</td>
<td id="i">Dummy9</td>
<td id="j">Dummy0</td>
<td id="k">Dummy11</td>
<td id="l">Dummy12</td>
<td id="m">Dummy13</td>
</tr>
</table>
ここでは、変数で (a、b、c、d、e、f、g...) という名前の id 属性の値を取得したいと考えています。jquery関数を作成するのに助けが必要
もう1つ、IDが異なる複数の行があり、その行に固有の列のIDを取得する方法を教えてください。