如何创建一个从 txt 文件中获取信息的循环?
现在我有一个循环,该循环会增加一,直到达到页面限制。 (这是一本迷你书/杂志)
我将它们插入到下拉菜单中,以便用户可以选择他们想要的数字,然后它将跳转到该页面。
有没有什么方法可以不使用数字,而是以某种方式将标题放入其中?比如封面、目录、丰田广告等?
我可以以某种方式列出我想要在单独的文本文件中显示的内容,并让循环遍历每个标题并显示它而不是数字吗?
感谢您的帮助:) 我只使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个类似于目录的对象/数组,而不是使用计数器。做这样的事情:
或者更简单地说:
那么你的代码可能是这样的:
Instead of using a counter, you can create an object/array that would resemble a table of contents. Do something like this:
or more simply:
Then your code could be something like this: