js 的 一些操作。。。

Posted 正义的伙伴!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 的 一些操作。。。相关的知识,希望对你有一定的参考价值。

// 对错误图片进行处理
    $("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 来将 字符串 转为数字。。。。。。。

以上是关于js 的 一些操作。。。的主要内容,如果未能解决你的问题,请参考以下文章

Node.js JavaScript 片段中的跳过代码

Relay.js 没有正确解析组合片段

VS Code中自定义Emmet代码片段

几个关于js数组方法reduce的经典片段

VSCode自定义代码片段——JS中的面向对象编程

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js