Home > Web Front-end > JS Tutorial > How to remove attributes in javascript

How to remove attributes in javascript

青灯夜游
Release: 2023-01-04 09:35:14
Original
8094 people have browsed it

Removal method: First obtain the specified DOM object, and then use the removeAttribute() method to remove the attribute; the syntax format is "DOM object.removeAttribute (element's attribute name)". The removeAttribute() method can remove an attribute with a specified name.

How to remove attributes in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

In javascript, you can use the removeAttribute() method to delete attributes.

The removeAttribute() method can remove the attribute with the specified name and has no return value.

Syntax:

element.removeAttribute(attributename)
Copy after login

Parameter attributename: The name of the attribute to be removed, cannot be omitted.

Example: Delete the style attribute of the header element

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<title>删除 header 元素的 style 属性</title>
	</head>

	<body>

			<h1 style="color:red">Hello World</h1>

			<p id="demo">点击按钮来删除标题中的 style 属性。</p>

			<button onclick="myFunction()">试一下</button>

			<script>
				function myFunction() {
					document.getElementsByTagName("H1")[0].removeAttribute("style");
				}
			</script>

		</body>

</html>
Copy after login

Rendering:

How to remove attributes in javascript

##Recommended learning:

javascript advanced Tutorial

The above is the detailed content of How to remove attributes in javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template