这与jquery的等价是什么?如何使用子进程缩短它(在jquery和javascript中我都很好奇为什么我的工作不正常)?我实际上尝试了孩子,但没有得到我想要的结果。
document.getElementById('ShowRow').getElementsByClassName('value')[0].getElementsByTagName('a')[0].innerHTML
提前致谢
答案 0 :(得分:3)
这样的事情:
$('#ShowRow').find('.value:first a:first').html()
答案 1 :(得分:3)
你可以这样做:
$('#ShowRow').find('.value:first a:first').html()