标签:cti load this tin 图片 span div 操作 blog
// 对错误图片进行处理 $("img").error(function() { $(this).attr("src", "http://127.0.0.1:81/img/error.jpg") }) //处理图片高度。。。。。 $(".scrollable-img img").load(function(){ var height = parseFloat($(this).css("height")) if(height<204){ $(this).css("padding-top",(204-height)/2+"px") } }) $(".portfolio-img img").load(function(){ var height = parseFloat($(this).css("height")) if(height<157){ $(this).css("padding-top",(157-height)/2+"px") } })
使用 parsetInt 或者 parseFloat 来将 字符串 转为数字。。。。。。。
标签:cti load this tin 图片 span div 操作 blog
原文地址:http://www.cnblogs.com/whm-blog/p/7070889.html