我有以下html结构:
<td title="Test Info - Displays another Web page on this Web page. The other Web page is presented in an IFrame." class="ms-WPHeaderTd" id="WebPartTitleWPQ2">
<h3 class="ms-standardheader ms-WPTitle" style="width: 778px; text-align: justify; overflow: hidden; text-overflow: ellipsis;" name="MSOFixedWidthTitle" fixedWidth="800px">
<nobr>
<span>
Text - I want this text
<span id="WebPartCaptionWPQ2"/>
因此,我试图通过执行以下操作来获取td
带有 id的 span 下的文本值WebPartTitleWPQ2
:
var spans = $("#WebPartTitleWPQ2").children("span")
SO 则spans.length
始终为 0。
我究竟做错了什么?
编辑
正在做
$("#WebPartTitleWPQ2").find("span").text()
导致返回两个值,这两个值都是blank