请教下大家如何得到tbody下最后一个<tr id="req_people_journey_item3_1">的下标,谢谢!
请教下大家如何得到
最后一个下标1呢,谢谢!回答
//获取最后一个tr对象var tr=document.querySelector("table > tbody > tr:last-of-type");
//想干啥都行了
//比如获取Tr的id
console.log(tr.id);
//获取id最后面的数字
console.log(tr.id.slice(-1));
以上是 请教下大家如何得到tbody下最后一个<tr id="req_people_journey_item3_1">的下标,谢谢! 的全部内容, 来源链接: utcz.com/a/30125.html