替换在设定的时间后
我尝试在 10 秒后将登陆页面上的 DIV-A 替换为 DIV-B。
我环顾四周,JQUERY 似乎是最好的选择,但我不知道该怎么做。似乎有很多用于循环 DIV 或通过单击按钮替换一个 DIV 的解决方案,但我只需要将第一个替换为第二个。
如果有任何其他简单的解决方案,我愿意接受任何事情。该网站是 HTML 的,我已经将缩小的 JQUERY 用于其他用途。
I'm trying to replace DIV-A with DIV-B on a landing page after 10 seconds.
I've been looking round and JQUERY seems to be the best bet, but I'm not sure how to do it. There seems to be plenty of solutions for cycling DIVs, or replacing one on a button click, but I just need the first to be replaced by the second.
If there's any other easy solutions I'm open for anything. The site is HTML and I'm already using the minified JQUERY for something else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
编辑:
这是一个工作演示 http://jsfiddle.net /mpeXp/
EDIT:
Here is a working demo http://jsfiddle.net/mpeXp/
您需要超时才能触发替换。然后,您需要找到 DIV-A 的父级,删除 DIV-A,然后将 DIV-B 添加到父级。
You'll need to have a timeout to trigger the replacement. Then you'll need to find the parent of DIV-A, remove DIV-A, then add DIV-B to the parent.
试试这个:
try this:
你可以混合 jquery 和 setTimeout 来实现这一点:
you can mix jquery and setTimeout to achieve this: