码迷,mamicode.com
首页 > Web开发 > 详细

jQuer获取网页中的img的真实尺寸

时间:2014-07-10 09:57:28      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   width   

var allImg = $(‘.content‘).find(‘img‘);
allImg.each(function() {
 var self = this;
 var newImg = new Image();
 newImg.src = this.src;
 newImg.onload = function() {
   if(newImg .width > 743{
     self.width = 743;
   }
 };

});

 

 上图

使用前

 bubuko.com,布布扣

 

 使用后

 

bubuko.com,布布扣 

 

jQuer获取网页中的img的真实尺寸,布布扣,bubuko.com

jQuer获取网页中的img的真实尺寸

标签:style   blog   http   color   使用   width   

原文地址:http://www.cnblogs.com/ghostman/p/3812467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!