如何在JavaScript中实现下一个和上一个按钮?
我在程序中使用了普通的JavaScript和jQuery。我有一个开始按钮,可以让程序自由运行。
<button class="button is-link" id= "start"> Start </button>
document.getElementsByTagName('button')[0].addEventListener('click', function() {
step1();
step2();
step3();
step4();
step5();
})
function step1() {
some action
}
function step2() {
some action
}
function step3() {
some action
}
function step4() {
some action
}
function step5() {
some action
}
我还将如何包含一个下一个和上一个按钮,可以在其中分别显示每个功能并在它们之间来回走动?
I am using plain JavaScript and JQuery in my program. I have a start button that just lets the program run freely.
<button class="button is-link" id= "start"> Start </button>
document.getElementsByTagName('button')[0].addEventListener('click', function() {
step1();
step2();
step3();
step4();
step5();
})
function step1() {
some action
}
function step2() {
some action
}
function step3() {
some action
}
function step4() {
some action
}
function step5() {
some action
}
How would I also include a next and previous button where I can show each function separately and go back and forth between them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您的代码中没有任何jQuery(以这种方式保留):)
其次,如果页面没有重新加载,则应将单个事件侦听器如下附加。
First of all, there isn't any jQuery in your code (keep it that way) :)
Secondly, if the page isn't reloading, then you should attach a single event listener like:
简单的开关案例将有所帮助。
Simple switch case will be helpful.