您好,登錄后才能下訂單哦!
這篇文章主要介紹了jquery中獲取圖片真實大小的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
jquery中獲取圖片真實大小的方法:1、方法一【.attr("src", $(''#imgid").attr("src"))】;2、方法二【theImage.src = $(''#imgid").attr( "src");】。
jquery中獲取圖片真實大小的方法:
第一種:
$("<img/>") // Make in memory copy of image to avoid css issues 在內存中創建一個img標記 .attr("src", $(''#imgid").attr("src")) .load(function() { pic_real_width = this.width; // Note: $(this).width() will not pic_real_height = this.height; // work for in memory images. });
第二種:
var theImage = new Image(); theImage.src = $(''#imgid").attr( "src"); alert( "Width: " + theImage.width); alert( "Height: " + theImage.height);
第一種要安全性要高些,保證是在圖片加載完成后在獲取。
感謝你能夠認真閱讀完這篇文章,希望小編分享jquery中獲取圖片真實大小的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。