我越來越HTML表在jQuery的Ajax響應jQuery的獲得首個TD值
$.ajax({
url: '/ajaxExecute.aspx?Fn=GETFEE',
type: 'POST',
context: document.body,
cache: false,
success: function (response) {
alert(response);
});
響應包含如下表
<table border="1" id="tbl1" border="0" style="margin-left:30px;">
<thead>
<tr>
<th>fee_type</th><th>fee_amount</th><th>from_amt</th><th>to_amt</th><th>fee_percent</th><th>higher_of_two</th><th>max_capture</th><th>min_capture</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td><td>5</td><td>0</td><td>0</td><td>0.00</td><td>0</td><td>0</td><td>0</td>
</tr>
</tbody>
</table>
我想只有第一排第一個TD值即0
response.find('td').html();
在控制檯我得到錯誤對象響應沒有方法'找到'
這是你想要的,因爲它只會找到第一個TD像你要求的答案。 –