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.
我一进入页面就对服务器进行 ajax 调用......现在我想让页面不可见或隐藏,直到正确发出 ajax 请求......怎么做?
这个?
$("*").hide();
稍后,当您的 AJAX 调用完成时,您可以执行
$("*").show();