• javaScript系列---【操作元素样式】


    操作元素样式

    原则:用过style属性操作的都是元素的行内样式(设置和获取)

    操作单个样式

    • 基本语法

      设置 :

      元素.style.样式属性 = 

      获取:

       元素.style.样式属性

      代码如下:

      var box =document.getElementById("box");

      // 设置
      box.style.width = "400px";
      box.style.height = "400px";
      // js中全部遵循驼峰命名法
      box.style.fontSize = "22px";
      box.style.backgroundColor = "blue";

      // 多次设置当前这个属性 后边的覆盖前边的
      box.style.width = "600px";

      // 获取
      // 行内有才能获取到,没有获取到的是空字符串
      console.log(box.style.width);
      console.log(box.style.height);
      console.log(box.style.fontSize);
      console.log(box.style.backgroundColor);

    操作样式集合

    • 注意:会把style对应的值整体覆盖了

    • 基本语法:

      设置:

      元素.style.cssText = "行内样式值"
      //cssText ->符合CSS写法

      获取:

      元素.style.cssTex; 
      //将行内style属性对应的值整体获取到 (符合CSS写法)

      代码如下:

      var box = document.getElementById("box");

      // 设置
      // 会把style对应的值整体覆盖了
      box.style.cssText = "200px;height:200px;
      // box.style.cssText = "font-size:60px";
      // box.style.cssText = "200px";

      // 获取
      console.log(box.style.cssText);

       

    •  

  • 相关阅读:
    响应头中的 ETag 值是如何生成的
    http请求状态码
    RPC 和 REST 有什么优劣
    comet 长轮询与 node 实现
    HTTPS 加密
    iterm2 快捷键
    static in C/C++
    03-树3 Tree Traversals Again
    2016.03.19随笔
    03-树2 List Leaves
  • 原文地址:https://www.cnblogs.com/chenhaiyun/p/14520664.html
Copyright © 2020-2023  润新知