0

这与 jquery 等价的东西是什么,我如何使用孩子来缩短它(在 jquery 和 javascript 中,因为我真的很好奇为什么我的不起作用)?我实际上尝试了孩子,但没有得到我想要的结果。

document.getElementById('ShowRow').getElementsByClassName('value')[0].getElementsByTagName('a')[0].innerHTML

提前致谢

4

2 回答 2

3

像这样的东西:

$('#ShowRow').find('.value:first a:first').html()
于 2013-05-23T20:21:10.320 回答
3

你可以做:

$('#ShowRow').find('.value:first a:first').html()
于 2013-05-23T20:22:05.170 回答