search
HomeWeb Front-endJS TutorialJavaScript three methods to obtain, set and remove element attributes_javascript skills

Take the following html as an example

Copy the code The code is as follows:

1. Obtain and set element properties through the attributes of HTMLElement type (object)
Copy code The code is as follows:

var div = document.getElementById("myDiv");
var img = document.getElementById("img1");
var a = document.getElementById("myA");
//Get element properties
alert(div.id); //"myDiv"
alert(div.className); //"bd", this is not div.class, because class is a reserved keyword
alert(div.title); //"I am div"
alert(a. href); //http://www.baidu.com
//Set element properties
div.id = "myDiv2"; //Change id to "myDiv2"
div.className = "ft "; //class is changed to "ft". If there is a style named "ft", it will immediately change to the "ft" style, and the browser will respond immediately
div.title = "I am myDiv2"; / /title is changed to "I am myDiv2"
div.align = "center"; //Set center alignment
img.src ="images/img1.gif"; //Set image path
a. innerHTML = "Sina"; //"Baidu" is changed to "Sina"
a.href = "http://www.sina.com.cn"; //Reset the hyperlink

2. Get, set, and remove the characteristics of elements through the getAttribute(), setAttribute(), and removeAttribute() methods (not recommended, the first two methods have exceptions in IE6 and 7, and the third method is not supported by IE6 , can be used when setting custom attributes)
getAttribute() method is used to obtain element attributes. It accepts one parameter, which is to get the attribute name of the element. The
setAttribute() method is used to set the attribute of the element. It accepts two parameters, namely to obtain the attribute name and attribute value of the element. The
removeAttribute() method is used to remove the attribute of the element. Accepts one parameter, which is the attribute name of the element to be removed
Copy code The code is as follows:

var div = document.getElementById("myDiv");
var img = document.getElementById("img1");
var a = document.getElementById("myA");
//Get element properties
alert(div.getAttribute("id")); //"myDiv"
alert(div.getAttribute("class")); //"bd", note that this is class, not className, Different from the above
alert(div.getAttribute("title")); //"I am div"
alert(a.getAttribute("href")); //http://www.baidu. com
//Set element attributes
div.setAttribute("id","myDiv2"); //Change id to "myDiv2"
div.setAttribute("class","ft"); / /class is changed to "ft", here it is also class, not className
div.setAttribute("title","I am myDiv2"); //title is changed to "I am myDiv2"
div.setAttribute ("align","center"); //Set center alignment
img.setAttribute("src","images/img1.gif"); //Set image path
//Remove element attributes
div.removeAttribute("class"); //Remove the class attribute

3. Get, set, and remove the attributes of the element through the attributes attribute
Copy code The code is as follows:

var div = document.getElementById("myDiv");
//Get element properties
alert(div.attributes["id"].nodeValue); //"myDiv"
//Set element attributes
div.attributes["id"].nodeValue = "myDiv2"; //id Change to "myDiv2"
//Remove element attributes
div.attributes.removeNamedItem("class"); //Remove class attributes
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
小红书如何移除粉丝关注   移除粉丝但不拉黑的方法小红书如何移除粉丝关注 移除粉丝但不拉黑的方法Mar 12, 2024 pm 04:40 PM

  小红书这一APP上大家所能获得信息超多,这里的功能服务多多,全都是能够由用户们自由的选择进行操作的,完全根据自己的需求,选择这里的一些对应的功能操作,解决大家的一些问题,特别的方便,真的每一天都能够为你们推荐出大量的这一些笔记,内容丰富,所涵盖的范围超广泛,自由的选择,无论想看这里的哪一些内容的版块,都是可以在这里满足大家,解决大家的一些问题,大家没事的时候,都能够自己尝试着发布各种的一些笔记,说不定大家都是有机会获得大量的一些粉丝哦,那么你们不想让一些粉丝们进行关注的话,都能够选择移除这一

jQuery如何移除元素的height属性?jQuery如何移除元素的height属性?Feb 28, 2024 am 08:39 AM

jQuery如何移除元素的height属性?在前端开发中,经常会遇到需要操作元素的高度属性的需求。有时候,我们可能需要动态改变元素的高度,而有时候又需要移除元素的高度属性。本文将介绍如何使用jQuery来移除元素的高度属性,并提供具体的代码示例。在使用jQuery操作高度属性之前,我们首先需要了解CSS中的height属性。height属性用于设置元素的高度

微博怎么移除近期登录设备_微博移除近期登录设备操作步骤微博怎么移除近期登录设备_微博移除近期登录设备操作步骤Mar 29, 2024 pm 04:11 PM

1、打开微博中我的页面,点击右上角齿轮设置的图标。2、进入设置的页面后,点击账号与安全的选项。3、在账号与安全的页面中,点击最近登录记录的选项。4、进入最近登录记录的页面后,点击要下线设备后面的退出。5、接着在弹出的窗口中,点击确认的按钮即可。

使用C++从数组中移除前导零使用C++从数组中移除前导零Sep 05, 2023 am 11:13 AM

我们提供了一个数组,并且我们的任务是从给定的数组中删除前导零,然后打印该数组。Input:arr[]={0,0,0,1,2,3}Output:123Input:arr[]={0,0,0,1,0,2,3}Output:1023我们可以创建一个新的数组,该数组不包含给定问题中先前数组的前导零。找到解决方案的方法在这种方法中,我们将遍历数组并插入所有数字,但不包括前导零。示例#include<iostream>usingnamespacestd;intmain(){&nbsp;&a

简单方法:用jQuery移除z-index属性简单方法:用jQuery移除z-index属性Feb 23, 2024 pm 05:18 PM

使用jQuery移除z-index属性是一个非常简单的操作,下面将通过具体代码示例来演示如何实现这一操作。首先,我们需要在HTML中引入jQuery库,可以使用以下CDN链接:&

在C++中,将一个二进制数的一位移除以获得最大值在C++中,将一个二进制数的一位移除以获得最大值Sep 17, 2023 pm 03:53 PM

讨论一个给定二进制数的问题。我们必须从中删除一点,以便剩余的数字应该是所有其他选项中的最大值,例如Input:N=1011Output:111Explanation:Weneedtoremoveonebitsoremoving0bitwillgiveamaximumnumberthanremovingany1&rsquo;sbit.111>101,011.Input:111Output:11Explanation:Sinceallthebitsare1sowecanremovean

Discuz底部信息移除教程Discuz底部信息移除教程Mar 11, 2024 am 09:03 AM

Discuz底部信息移除教程随着Discuz论坛系统的不断发展和普及,许多站长和管理员在构建自己的论坛时希望对网站进行个性化定制,其中包括移除底部信息。在这篇文章中,我们将为大家分享如何移除Discuz底部信息的具体教程,并提供代码示例,帮助您轻松完成操作。步骤一:登录Discuz后台首先,您需要登录到Discuz论坛的后台管理系统,输入正确的用户名和密码,

用PHP编写的路径后缀移除工具用PHP编写的路径后缀移除工具Mar 22, 2024 pm 04:15 PM

标题:PHP编写的路径后缀移除工具随着互联网的发展,网站的URL地址也变得越来越重要。有时候我们会遇到一些URL地址带有后缀的情况,如“http://www.example.com/page.php”或“http://www.example.com/page.html”,这些后缀不仅显得冗长,而且可能会影响搜索引擎优化。因此,编写一个路径后缀移除工具成为一项

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft