<form action="blah"> <table>...</table> <table> <tr>...</tr> <tr> <td>...<td> <td> **some text that changes** </td>
鉴于上面的html结构,我如何使用jQuery获取更改的文本
所以我希望jquery像这样搜索:
– 寻找具有atrribute action =“blah”的形式
– 选择表格的第二个表格
– 选择表格的第2行(tr)
– 选择行的第二个单元格(td)
给我文字
这将有助于我大大理解jquery …我是新手.
类似于$(‘form [action =“blah”]’).tables(2).rows(2).cells(2).text但这不是一个有效的jquery匹配