Short version question : Is there navigator.mozIsLocallyAvailable equivalent function that works on all browsers, or an alternative?
<>0>
Hi, Here is my situation : I want to implement an HtmlHelper extension for asp.net MVC that handle image post-loading easily (using jQuery).
So i render the page with empty image sources with the source specified in the "alt" attribute. I insert image sources after the "window.onload" event, and it works great.
我这样做了:
$(window).bind( load , function() {
var plImages = $(".postLoad");
plImages.each(function() {
$(this).attr("src", $(this).attr("alt"));
});
});
www.un.org/Depts/DGACM/index_spanish.htm 问题在于:。 在第一次装货之后,载后图像被加热。 但是,如果该网页需要10秒钟才能装载,则在这10秒后将展示有卡的后载图像。
因此,如果图像能够立即显示,就想在“文件读物”活动中具体说明图像来源。
我发现这一职能:当地人 如果有图像在海滩上,可以检查。 这里是我用 j子做的:
//specify cached image sources on dom ready
$(document).ready(function() {
var plImages = $(".postLoad");
plImages.each(function() {
var source = $(this).attr("alt")
var disponible = navigator.mozIsLocallyAvailable(source, true);
if (disponible)
$(this).attr("src", source);
});
});
//specify uncached image sources after page loading
$(window).bind( load , function() {
var plImages = $(".postLoad");
plImages.each(function() {
if ($(this).attr("src") == "")
$(this).attr("src", $(this).attr("alt"));
});
});
该公司在“DOM”公司工作,但在任何其他公司工作。 我尝试了导航器。 当地雇员 现有:相同结果。
是否有任何替代办法?