在给定时间显示和隐藏 DIVS
我遇到了大麻烦,我正在创建一个多项选择调查问卷,其中每个问题都是一个 DIV,我需要一个 javascript,除了在给定时间滚动的 DIVS 之外,屏幕这次显示秒数,问题是每个问题都必须有一个时间 不同,例如1号已经有10秒的时间来提问,2号是15秒,例如,有人可以帮助我吗?
I'm in big trouble, I'm creating a multiple choice questionnaire, where each issue is a DIV, I need a javascript that apart from the DIVS roll at a given time, the screen shows the seconds this time, the problem is that every question must have a time
different, eg the No. 1 already has 10 seconds to question No. 2 is 15 seconds, for example, can anyone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你使用
setTimeout
Jquery 的函数,使用getElementById('yourid').style.display = "none";
这是一个 我为你制作的示例。
I suggest you to use
setTimeout
Jquery's function, playing withgetElementById('yourid').style.display = "none";
Here's an Example I made for you.