ホームページ > 記事 > ウェブフロントエンド > jqueryで画像の実際のサイズを取得する方法
#このチュートリアルの動作環境: Windows10 システム、jquery2.2.4、この記事はすべてのブランドのコンピューターに適用されます。jquery で画像の実際のサイズを取得する方法: 1. 方法 1 [.attr("src", $(''#imgid").attr("src"))]; 2.方法 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. });2 つ目:
var theImage = new Image(); theImage.src = $(''#imgid").attr( "src"); alert( "Width: " + theImage.width); alert( "Height: " + theImage.height);1 つはより安全であり、イメージのロード後に取得されることが保証されます。
関連する無料学習の推奨事項:JavaScript (ビデオ)
以上がjqueryで画像の実際のサイズを取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。