📅  最后修改于: 2022-03-11 15:02:07.045000             🧑  作者: Mango
var value = $('table')
.find('tr:eq(3)') // get the 4th table row
.find('td:eq(4)') // get the 5th table cell in that row
.text(); // get the text inside that cell