如何创建一个从 txt 文件中获取信息的循环?

发布于 2024-09-16 14:35:34 字数 264 浏览 6 评论 0原文

现在我有一个循环,该循环会增加一,直到达到页面限制。 (这是一本迷你书/杂志)

我将它们插入到下拉菜单中,以便用户可以选择他们想要的数字,然后它将跳转到该页面。

有没有什么方法可以不使用数字,而是以某种方式将标题放入其中?比如封面、目录、丰田广告等?

我可以以某种方式列出我想要在单独的文本文件中显示的内容,并让循环遍历每个标题并显示它而不是数字吗?

感谢您的帮助:) 我只使用 jquery & javascript...当然还有html。

Right now I have a loop that is going up by one until it hits its page limit. (this is a mini book/magazine)

I have them inserted into a drop down so a user could select the number they want and it will jump to that page.

Is there any way to instead of use numbers, somehow get titles into it instead? Like Front cover, table of contents, Toyota ad, etc?

Could I somehow list off what I would want to be displayed in a separate text file, and have the loop go through each title and display it instead of numbers?

Thanks for any help :)
I am only using jquery & javascript... and html of course.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你げ笑在眉眼 2024-09-23 14:35:34

您可以创建一个类似于目录的对象/数组,而不是使用计数器。做这样的事情:

var pages = {
   0 : 'Title Page',
   1 : 'Table of Contents',
   2 : 'Chapter One',
   3 : 'Chapter Two',
   5 : 'Chapter Three'
};

或者更简单地说:

var pages = [
   'Title Page',
   'Table of Contents',
   'Chapter One',
   'Chapter Two'
];

那么你的代码可能是这样的:

$.each(pages, function(index, value) {
    $(document.createElement('option')).val(index).text(value).appendTo($('select#id-here'));
}

Instead of using a counter, you can create an object/array that would resemble a table of contents. Do something like this:

var pages = {
   0 : 'Title Page',
   1 : 'Table of Contents',
   2 : 'Chapter One',
   3 : 'Chapter Two',
   5 : 'Chapter Three'
};

or more simply:

var pages = [
   'Title Page',
   'Table of Contents',
   'Chapter One',
   'Chapter Two'
];

Then your code could be something like this:

$.each(pages, function(index, value) {
    $(document.createElement('option')).val(index).text(value).appendTo($('select#id-here'));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文