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.
我的网页中有以下睡眠行:
sleep(600);
对于用户来说,它看起来好像页面正在“永远”加载。这种效果是期望的。
但是,这将创建一个持续 10 分钟的进程,占用系统资源。有没有一种方法可以为用户创建相同的效果(“永远”加载)而无需冗长的过程?
尝试使用 jQuery 脚本。那是可行的吗,因为这是设计原因,对吗?还是我想错了。
body {display: none}
然后对于一些jquery
$("body").delay(MILLISECOND_WAIT).attr("display", "block");