zoukankan      html  css  js  c++  java
  • js 批量设置样式的三种方法

    一般我们都用css来批量设置样式,现在我们用js也可以批量设置样式:

    总结三种方法如下

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>无标题文档</title>
    <style type="text/css">
    #div1{ width:100px; height:100px; background:#069;}
    </style>
    <script type="text/javascript">
    //第一种使用JSON
    function setStyle(obj,json){
        for(var i in json)
        {
            obj.style[i]=json[i];
        }
    }
    window.onload=function(){
        var oDiv=document.getElementById('div1');
        //   setStyle(oDiv, { '200px', background: 'red'});    //第一种
        //   oDiv.style.cssText=" 200px; height:300px; background:yellow;";  //第二种 使用cssText
        
      //使用第三种 with (不推荐使用)
        with(oDiv.style)
        {
            width='300px';
            height='500px';
            background='yellow';
        }
        
    };
    </script>
    </head>
    
    <body>
    <div id="div1"></div>
    </body>
    </html>

    jhujhujhuhiuhihihihihjihjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj 

    博客是本人学习后,保存于博客,如有错误和问题请留言,大家一起讨论。

           

  • 相关阅读:
    Redis主从同步分析
    团队形成的四个阶段
    Firefox 按一下Alt键 出现菜单!
    Android系统手机端抓包方法
    你必须知道的EF知识和经验
    .NET异步编程之回调
    正确设置电脑虚拟内存
    Cache and Virtual Memory
    性能测试指标
    HTTP协议
  • 原文地址:https://www.cnblogs.com/chenyajie/p/2932142.html
Copyright © 2011-2022 走看看