$(t).html()
returns
test1test2
I want to retrieve the second td<
td<
In addition to using jQuery methods, you can use the native cells collection that the gives you. $(t)[0].cells[1].innerHTML Assuming t is a DOM element, you could bypass the jQuery object creation. t.cells[1].innerHTML 0 讨论(0) 查看其它9个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
cells
gives you. $(t)[0].cells[1].innerHTML Assuming t is a DOM element, you could bypass the jQuery object creation. t.cells[1].innerHTML 0 讨论(0) 查看其它9个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
$(t)[0].cells[1].innerHTML
Assuming t is a DOM element, you could bypass the jQuery object creation.
t
t.cells[1].innerHTML