私はこのテーブルを持っています:
<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' );
上記はお客様にとっては問題ありませんが、残りはどのようにすればよいですか?