Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个动态生成的企业应用程序页面。数据在表结构内。我需要访问该表内的 span 标签值。
页面代码看起来像
<td class="dCCItemValue" valign="bottom> <span id="S_0_1_5">Problem type</span>
span 标签的 id 也是动态生成的,我无法控制它。所以问题陈述变成:如何在类“dCCItemValue”的 td 中获取值跨度
我希望我已经正确解释了这个问题。请帮忙
在选择器中使用后代运算符(空格):
var value = $('.dCCItemValue span').text();
如果我理解正确,这应该有效:
$('.dCCItemValue').children('span').text()