所以我有以下HTML:
<div id="mainSectionNav" class="section-container auto" data-section="" style="">
<section class="active" style="padding-top: 50px;">
<p class="title" data-section-title="" style="left: 0px;">
<a href="#panel2">Dashboard</a>
</p>
</section>
<section>
<p class="title" data-section-title="" style="left: 97px;">
</section>
我正在尝试编写一个函数来返回链接文本“仪表板”。
function zurbGetActiveSectionTab(elementId) {
var activeSectionLinkText = '';
var sectionLayout = document.getElementById(elementId);
var sections = sectionLayout.childNodes;
for(var i=0; i < sections.length; i++) {
var section = sections[i];
console.log("section tagName " + section.tagName);
if ($(section).hasClass('active')) {
var activeSectionParagraph = section.firstChild;
// if(sections[i].type == 'level2-div')
console.log("activeSectionParagraph tagName " + activeSectionParagraph.tagName);
var activeSectionLink = activeSectionParagraph.firstChild;
console.log("activeSectionLink tagName " + activeSectionLink.tagName);
activeSectionLinkText = activeSectionLink.innerHTML;
}
}
return activeSectionLinkText;
}
但这输出的是:
section tagName undefined
section tagName SECTION
activeSectionParagraph tagName undefined
TypeError: activeSectionLink is null
[Break On This Error]
这让我很困惑。
- 为什么section[0] 未定义?
- 为什么 activeSectinParagraph tagName 未定义
- 为什么 activeSectionLink 为空?
- activeSectionLink.innerHTML 是获取链接文本的正确方法吗?
抱歉问了这么多问题。我越是搞砸这个,我就越困惑。