📜  JavaScript removeAttribute()方法

📅  最后修改于: 2020-10-27 00:48:07             🧑  作者: Mango

JavaScript removeAttribute()方法

此方法用于从元素中删除指定的属性。它与removeAttributeNode()方法不同。 removeAttributeNode()方法删除特定的Attr对象,但是removeAttribute()方法删除具有指定名称的属性。

句法

element.removeAttribute(attributename)

参数值

attributename:这是必需的参数,用于指定要从元素中删除的属性名称。如果该属性不存在,则该方法不会产生任何错误。

让我们通过一些示例来理解它。

例1

在此示例中,有两个具有id para的段落元素,而para1属于同一类jtp。在这里,我们将删除这些段落元素的class属性。我们必须单击给定的HTML按钮才能看到效果。





The removeAttribute Method




Welcome to the javaTpoint.com

Example of the removeAttribute() Method

This is a paragraph element.

This is second paragraph element.

输出量

执行完上述代码后,输出将为-

点击给定的按钮后,我们将看到以下输出-

例2

在此示例中,有两个div元素,其ID为div1和div2。我们正在将style属性应用于这些div元素。

在这里,我们将删除这些div元素的style属性。我们必须单击给定的HTML按钮才能看到效果。





The removeAttribute Method




Welcome to the javaTpoint.com

Example of the removeAttribute() Method

This is first div element.

This is second div element.

输出量

执行后,输出将是-

单击按钮后,输出将为-

同样,我们可以使用removeAttribute()方法删除目标属性,align属性,readonly属性以及更多其他属性。