Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ASP.net 中工作,我有两个 url 用于使用计时器和 iframe 显示为“SlideShow”。它工作正常,但是,我想让它在当前页面显示时已经加载下一页。然后,当计时器点击时,下一页显示没有任何加载时间。因此,该用户看不到两个页面之间的任何延迟。
有人可以帮助我如何实现这一目标吗?
谢谢。
您可以使用 jQuery 向 dom 添加 1 个或多个隐藏 iFrame,并添加属性 src="[url-to-load]"。
var $frame = $('<iframe />'); $frame.css('display', 'none') .attr('src', '[url-to-load]'); $(document.body).append($frame);
然后您需要自己编写轮播功能