我是一个 jQuery 新手。我有下表 -
<table summary="This table lists all values in storage.">
<caption>Values in storage</caption>
<tbody>
<tr>
<th scope="row">JetBlue 983</th>
<td>Boston (BOS)</td>
<td>New York (JFK)</td>
</tr>
<tr>
<th scope="row">JetBlue 354</th>
<td>San Francisco (SFO)</td>
<td>Los Angeles (LAX)</td>
</tr>
<tr>
<th scope="row">JetBlue 465</th>
<td>New York (JFK)</td>
<td>Portland (PDX)</td>
</tr>
</tbody>
</table>
现在,我想在每次加载页面的该部分时使用 jquery 读取本地存储并填充第二列中的值。最简单的方法是什么?