oracle 照片长度,jQuery限制图片大小的方法

本文实例讲述了jQuery限制图片大小的方法。分享给大家供大家参考,具体如下:

最近在搞一个信息网站,文章内容中可以显示图片,所以就需要限制用户贴进去的图片的显示大小了。

在网上找到一段代码:

$(document).ready(function(){

$("#viewnews_body img").each(function(){

var width = 620;

var height = 600;

var image = $(this);

if (image.width() > image.height()){

if(image.width()>width){

image.width(width);

image.height(width/image.width()*image.height());

}

}else{

if(image.height()>height){

image.height(height);

image.width(height/image.height()*image.width());

}

}

});

});

用这个方法了实现运行效果不稳定,有时间图片还没有加载完毕就会先执行了。

所以改用给所有需要限制大小的图片绑定load事件的方法来实现,这样保证了在每个图片加载完后再分别执行限制大小的代码。代码如下:

$(document).ready(function(){

$("#viewnews_body img").bind("load",function(){

var width = 620;

var height = 600;

var image = $(this);

if (image.width() > image.height()){

if(image.width()>width){

image.width(width);

image.height(width/image.width()*image.height());

}

}else{

if(image.height()>height){

image.height(height);

image.width(height/image.height()*image.width());

}

}

});

});

希望本文所述对大家jQuery程序设计有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值