// 对错误图片进行处理 $("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 来将 字符串 转为数字。。。。。。。
时间: 2024-10-09 09:23:18