我在 jQuery Ajax 响应中得到 HTML 表
$.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();
在控制台中我收到错误对象响应没有“查找”方法