我有这张桌子:
<div id="customer-content">
<table>
<caption>Customer Details</caption>
<tr>
<th>Customer no</th>
<td>customer-no</td>
</tr>
<tr class="alt">
<th>First name</th>
<td>first-name</td>
</tr>
<tr>
<th>Last name</th>
<td>last-name</td>
</tr>
<tr class="alt">
<th>Phone number</th>
<td>phone-number</td>
</tr>
<tr>
<th>Date of birth</th>
<td>dob</td>
</tr>
</table>
</div>
通过 jQuery 向其中输入一些数据的最佳方法是什么:
$('div#customer-content table tr td').text( '1234' );
以上对客户没有问题,但我该怎么做?