0
我有一個字段和一個圖像的容器。Javascript正在載入圖像
在此容器中有一個默認圖像。
我想要用戶放置圖像的鏈接,然後提交它,然後將圖像添加到默認圖像的 src屬性。
我的問題,我應該如何加載圖像,並在此期間向用戶顯示進度條,並在加載完成後,隱藏URL。我現在主要關心的是如何加載資源。
現在我已經寫了這個劇本:
jQuery("#logo-file-upload").on("click", function(){
// when user clicks the submit button
$("#url-logo-progress").show(); // show the progress bar to it
var logoUrl = $("#logo-url").val(); // pick up the inserted URL
$("#image-width").attr("src", logoUrl); // and put the URL into the src attribute of the image
});
雖然我需要的是這樣的:
$.imageLoad({ url : "url/to/image.jpg",
complete : function(){
alert("upload finished!");
});
我有沒有問題,writen回調和狀態的,但我不知道該怎麼加載資源。
在此先感謝
請參閱https:// github。查看此[文章](http://stackoverflow.com/questions/10863658/load-image-with-jquery-and-append-it-to-the-dom) – Max 2014-09-21 11:04:38
請參閱https:// github。 COM/glenswift/ImageLoader的。也許它可以幫助你 – 2014-09-21 11:31:47