jquery에서 이미지의 실제 크기를 얻는 방법: 1. 방법 1 [.attr("src", $(''#imgid").attr("src"))]; 2. 방법 2 [theImage .src = $(''#imgid").attr( "src");].
이 튜토리얼의 운영 환경: windows10 시스템, jquery2.2.4, 이 기사는 모든 브랜드의 컴퓨터에 적용 가능합니다.
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);
첫 번째 방법은 더 안전하며 이미지가 로드된 후에 얻을 수 있습니다.
관련 무료 학습 권장 사항: JavaScript(동영상)
위 내용은 jquery에서 이미지의 실제 크기를 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!