• getStyle(),修改样式属性


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    </head>
    
    <body>
    <style>
    #div{ width:100px; height:100px; background-color:#F00}
    </style>
    <div id="div"></div>
    <script>
    var obj = document.getElementById('div')
    alert(getStyle(obj, 'backgroundColor'));
    
    function getStyle(obj, name)
    {
    if(obj.currentStyle)
    {
    return obj.currentStyle[name];
    }
    else
    {
    return getComputedStyle(obj,false)[name];
    }
    }
    </script>
    </body>
    </html>

    getstyle(element,Attribute[name])

  • 相关阅读:
    多维梯度下降
    梯度下降
    三种评价函数
    Gluon sgd
    Gluon.vision的几类数据集
    Gluon Data API
    Gluon 实现 dropout 丢弃法
    AlexNet 分类 FashionMNIST
    LeNet 分类 FashionMNIST
    LeNet
  • 原文地址:https://www.cnblogs.com/LoveOrHate/p/4544918.html
Copyright © 2020-2023  润新知