4 Commits

2 changed files with 21 additions and 14 deletions

View File

@@ -121,11 +121,15 @@
// 内容 // 内容
// 清空标题列表 // 清空标题列表
$("#title-list ul").empty(); $("#title-list ul").empty();
// 提取 h1 标题 // 提取 h3 标题
var h1Titles = $("#rendered-content").find("h3"); var h1Titles = $("#rendered-content").find("h3");
// 只有当找到h3标题且内容不为空时才进行处理
if (h1Titles.length > 0) {
h1Titles.each(function (index) { h1Titles.each(function (index) {
var title = $(this); var title = $(this);
var titleText = title.text(); var titleText = title.text().trim(); // 使用trim()去除空白字符
// 只有当标题文本不为空时才添加到列表
if (titleText) {
var titleId = "title-" + index; var titleId = "title-" + index;
title.attr("id", titleId); title.attr("id", titleId);
var listItem = $("<li>"); var listItem = $("<li>");
@@ -135,7 +139,9 @@
}); });
listItem.append(link); listItem.append(link);
$("#title-list ul").append(listItem); $("#title-list ul").append(listItem);
}
}); });
}
}); });
</script> </script>
{/block} {/block}

View File

@@ -173,6 +173,7 @@
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .sub-list li a.active { .narshelpdetailPc .nars-help-content .nars-hlpdt-ml .sub-list li a.active {
color: #1f2635; color: #1f2635;
border-bottom: 1px solid #1f2635; border-bottom: 1px solid #1f2635;
font-weight: bold;
} }
.narshelpdetailPc .nars-help-content .nars-hlpdt-mm { .narshelpdetailPc .nars-help-content .nars-hlpdt-mm {
@@ -226,7 +227,7 @@
} }
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li { .narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li {
margin-bottom: 23px; margin-bottom: 15px;
} }
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li a { .narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li a {