如何获取和修改 DOM 元素的 property 属性?
获取 DOM 元素的 property 属性的一个方法是使用 console.dir() 函数。此函数将对象打印到控制台中,包括所有属性及其值。但是,如果需要修改或读取特定属性,还需要遵循特定的步骤。
读取属性
要读取 DOM 元素的 property 属性,可以使用以下语法:
element.propertyName;
例如,要读取 div 元素的 accessKey 属性,可以这样做:
const e = document.getElementById('box'); e.accessKey;
这将返回 accessKey 属性的值。
修改属性
要修改 DOM 元素的 property 属性,可以使用以下语法:
element.propertyName = value;
例如,要修改 div 元素的 accessKey 属性为 "A",可以这样做:
const e = document.getElementById('box'); e.accessKey = "A";
属性值现在已更改为 "A"。