• js改变css样式的三种方法


     

     

    共用代码:

    <div id="div">这是一个盒子</div>
    var div = document.getElementById("div");

    第一种:用cssText

    div.style.cssText='600px;height:250px;border:1px red solid;text-align: center;line-height: 250px;';

    第二种:用setProperty()

     div.style.setProperty('width','700px');
     div.style.setProperty('height','300px');
     div.style.setProperty('line-height','300px');
     div.style.setProperty('background','#f00');
     div.style.setProperty('color','#fff');
     div.style.setProperty('border','1px solid blue');
     div.style.setProperty('text-align','center');

    第三种:使用css属性对应的style属性

    复制代码
     div.style.width = "800px";
     div.style.height = "250px"; 
     div.style.lineHeight = "250px"; 
     div.style.background = "#000";
     div.style.color = "#fff";
     div.style.border = "1px solid #111";
     div.style.textAlign = "center";
    复制代码
    复制代码
    <body>
            <div id="div">这是一个盒子</div>
            <script type="text/javascript">
                var div = document.getElementById("div");
                
                //第一种:用cssText
                div.style.cssText='600px;height:250px;border:1px red solid;text-align: center;line-height: 250px;';
                
                //第二种:用setProperty()
                div.style.setProperty('width','700px');
                div.style.setProperty('height','300px');
                div.style.setProperty('line-height','300px');
                div.style.setProperty('background','#f00');
                div.style.setProperty('color','#fff');
                div.style.setProperty('border','1px solid blue');
                div.style.setProperty('text-align','center');
                
                //第三种:使用css属性对应的style属性
                div.style.width = "800px";
                div.style.height = "250px"; 
                div.style.lineHeight = "250px"; 
                div.style.background = "#000";
                div.style.color = "#fff";
                div.style.border = "1px solid #111";
                div.style.textAlign = "center";
            </script>
        </body>
    复制代码
  • 相关阅读:
    HttpServletRequest和HttpServletResponse
    .NET Core 通过 Ef Core 操作 Mysql
    spring-boot整合shiro实现权限管理
    spring-boot整合mongodb多数据源的案例
    spring-boot整合mybaits多数据源动态切换案例
    spring-boot整合Mybatis多数据源案例
    spring-boot整合mongodb的案例
    spring-boot和redis的缓存使用
    spring-boot 定时任务案例
    spring-cloud:熔断监控Hystrix Dashboard和Turbine的示例
  • 原文地址:https://www.cnblogs.com/lydg/p/11363810.html
Copyright © 2020-2023  润新知