zoukankan      html  css  js  c++  java
  • DOM属性操作

    HTML attribute  --> DOM property

    每个html属性都对应一个DOM对象属性,举个栗子:

    <div>
        <label for="userName">用户名:</label>
        <input id="userName" type="text"  class="u-txt" />
    </div>
    HTML DOM
    input.id input.id
    input.type input.type
    input.class input.className
    label.for label.htmlFor

    input.className  // “u-txt”
    
    input[“id”]    // ”userName”

    类型

    input.

    属性名 返回值 返回值类型
    className “u-txt” String
    maxLength 10 Number
    disabled true Boolean
    onclick function onclick(event){ … } Function

    通用性--名字异常:  由于一些属性名与关键字重合,所以不能直接使用属性名访问,如class就会变成className

    扩展性

    实用对象

    g/setAttribute

    var attribute=element.getAttribute(attributeName);

    <div>
        <label for="userName">用户名:</label>
        <input id="userName" type="text" class="u-txt">
    </div>
    input.getAttribute("class");   //"u-txt"

    element.setAttribute(name,value);

    <div>
        <label for="userName">用户名:</label>
        <input id="userName" type="text" class="u-txt">
    </div>
    input.setAttribute("value","757617012@qq.com");
    input.setAttribute("disabled",""); //在html中,布尔型的属性只要出现默认是true

    类型

    <input class="u-txt"
            maxlength="10"
            disabled
            onclick="showSuggest();">

    input.getAttribute(“ 属性字符串

    属性名 返回值 返回值类型
    class “u-txt” String
    maxlength “10” String
    disabled “” String
    onclick “showSuggest();” String

    ”)

    举个栗子(用两种方法将button设置为『不可点击』):
    button.disabled = true;   //设置 『属性』
    button.setAttribute('class','disabled');  //通过方法 指定 『属性字符串:属性值字符串』
  • 相关阅读:
    Linux软件安装管理
    Linux软件安装管理
    Linux软件安装管理
    Ubuntu下安装python相关数据处理
    2016/09/23
    2016/09/22
    2016/09/21
    2016/09/20
    HDU1054 Strategic Game(树形dp)
    HDU1011 Starship Troopers(树形dp)
  • 原文地址:https://www.cnblogs.com/qq-757617012/p/5985417.html
Copyright © 2011-2022 走看看