gpt4 book ai didi

javascript - 循环并在 html 前面添加 javascript

转载 作者:行者123 更新时间:2023-12-02 19:16:20 25 4
gpt4 key购买 nike

我将不得不重新发布我之前的问题,因为我需要重新表述我需要的内容。

所以,就这样吧。

我有一个包含一些列表项的网页,

HTML

<div class="container">
<p>Items are ordered Alphabetically and I want the text to be untouched</p>
</div>

所有这些列表项都包含在我计算机上的一个文件夹中。我想做的不是必须手动输入 ../Html/1.html 、 ../Html/2.html ... 相反,我希望找到一个脚本来为我完成这项工作。

所有项目均按数字顺序编号,从 1 一直到 100。所以我知道使用 i++ 进行迭代可能会在循环中派上用场。但我真的不知道更多了!

最佳答案

使用这个:

<div id="theContainer" class="container">
<p>Items are ordered Alphabetically and I want the text to be untouched</p>
</div>

<script>
window.addEventListener('DOMContentLoaded', function() {
var container = document.getElementById('theContainer'), i, p, s;
var numStart = 1, numEnd = 100;
var path = '../Html/*.html'; //use "*" to substitute the number
for (i = numStart; i <= numEnd; i++) {
p = path.replace(/\*/,i);
s += '<li><a href="' + encodeURI(p) + '">' + p + '</a></li>';
}
container.innerHTML = container.innerHTML + '<ol>' + s + '</ol>';
}, false);
</script>

关于javascript - 循环并在 html 前面添加 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13090430/

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