gpt4 book ai didi

javascript - 如何使用 jquery/javascript 将每个 header 转换为永久链接

转载 作者:行者123 更新时间:2023-12-03 00:23:56 25 4
gpt4 key购买 nike

我有一个包含许多标题的页面。我想使用 jquery/javascript 将每个 header 转换为某种永久链接。

HTML 代码:

$('h3').each(function() {
var id = $(this).attr('id');
if (id) { //To make sure the element has an id
$(this).append($('<a/>', {
href: '#' + $(this).attr('id'),
text: '#'
}));
}
});
body {
border: 1px dashed black;
padding: 0.5em;
text-align: center;
padding-bottom: 100vh;
}

.borderedPara {
height: 15em;
border: 1px dashed red;
padding: 0.5em;
text-align: center;
}
<html>

<head>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
</head>

<body>
<h3 id="Heading1">1<sup>st</sup> Heading</h3>
<div class="borderedPara">
1<sup>st</sup> Paragraph Content
</div>
<h2 id="Heading2">2<sup>nd</sup> Heading</h2>
<div class="borderedPara">
2<sup>nd</sup> Paragraph
</div>
<h3 id="Heading3">3<sup>rd</sup> Heading</h3>
<div class="borderedPara">
3<sup>rd</sup> Paragraph
</div>
<a href="#Heading4">
<div id="Heading4">4<sup>th</sup> Heading</div>
</a>
<div class="borderedPara">
4<sup>th</sup> Paragraph
</div>
</body>

</html>

最后一个锚定标题是我想要的。整个标题应该是可点击的。我通过当前的 jquery 得到的只是标题后面的一个超链接。

最佳答案

您可以使用.wrapInner ...

$(':header[id]').each(function() {
var anchor = document.createElement('a')
anchor.href = '#' + this.id
$(this).wrapInner(anchor)
});
body {
border: 1px dashed black;
padding: 0.5em;
text-align: center;
padding-bottom: 100vh;
}

.borderedPara {
height: 15em;
border: 1px dashed red;
padding: 0.5em;
text-align: center;
}
<html>

<head>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
</head>

<body>
<h3 id="Heading1">1<sup>st</sup> Heading</h3>
<div class="borderedPara">
1<sup>st</sup> Paragraph Content
</div>
<h2 id="Heading2">2<sup>nd</sup> Heading</h2>
<div class="borderedPara">
2<sup>nd</sup> Paragraph
</div>
<h3 id="Heading3">3<sup>rd</sup> Heading</h3>
<div class="borderedPara">
3<sup>rd</sup> Paragraph
</div>
<a href="#Heading4">
<div id="Heading4">4<sup>th</sup> Heading</div>
</a>
<div class="borderedPara">
4<sup>th</sup> Paragraph
</div>
</body>

</html>

关于javascript - 如何使用 jquery/javascript 将每个 header 转换为永久链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54176020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com