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.
我试图在页面未加载时显示微调器 .gif。然后,当页面加载时,微调器必须隐藏。我搜索,但一无所获。
有这方面的例子吗?我怎样才能做到这一点?
将您的微调器添加为普通的 img 标签并给他一个 id 然后在 documentReady 上删除标签
在您的 html 中:
<img src="your;gif" id="spinner" />
然后在使用 jquery 的 javascript 代码中:
$(function(){ $('#spinner').remove(); })