zoukankan      html  css  js  c++  java
  • JS获取元素属性和自定义属性

    Attribute

    该属性主要是用来在标签行内样式,添加、删除、获取属性。且适用于自定义属性。

    setAttribute("属性名",属性值“”);这个是用来设置标签属性的;

    removeAttribute("属性名");这是用来删除标签属性的。

    getAttribute("属性名");获取标签该属性的值;

    obj.style.css样式

    该属性主要是用来在标签行内样式,添加、删除、获取属性。不适用自定义属性。

    例如设置li标签的宽高,背景色;

    li.style.width = "200px";

    li.style.height = "200px";

    li.style.backgroundColor = "red";

    注意在js中,css的属性名用连接符的地方,改为将后面的第一个字母大写,如:background-color ==> backgroundColor ;

    window.getComputedStyle(obj)["属性名"]

    用来获取标签的属性,对内联式有效。

  • 相关阅读:
    Design Tutorial: Inverse the Problem
    The Number Off of FFF
    "Money, Money, Money"
    No Pain No Game
    Group
    Vases and Flowers
    Codeforces Round #466 (Div. 2)
    ST表
    Wildcard Matching
    HDOJ 3549 Dinitz
  • 原文地址:https://www.cnblogs.com/grj001/p/12224383.html
Copyright © 2011-2022 走看看