我在我的 HTML 页面中使用使用 AJAX 调用的 Web 服务。Web 服务返回数据的时间接近 30 到 40 秒。
在此加载期间,我需要在 Web 服务完全接收数据后使用一些加载 Gif 图像,加载图像必须隐藏。
我只使用 HTML、JAVASCRIPT、CSS、J 查询。
需要任何想法或样品。
我正在使用以下代码
$(document).ready(function () {
document.write('<img src="http://www.esta.org.uk/spinner.gif">');
});
$( window ).load(function() {
//This following Function Related To My Design
jQuery(".chosen").data("placeholder", "Select Frameworks...").chosen();
var config = {
'.chosen-select': {},
'.chosen-select-deselect': { allow_single_deselect: true },
'.chosen-select-no-single': { disable_search_threshold: 10 },
'.chosen-select-no-results': { no_results_text: 'Oops, nothing found!' },
'.chosen-select-width': { width: "95%" }
}
for (var selector in config) {
$(selector).chosen(config[selector]);
}
});
在上面的代码中,我的问题是页面加载 Gif 图像显示,但它不是仅隐藏 Gif 图像仅显示。