我该如何读取和修改dom元素的property属性呢?
悬赏问答
1087 人阅读
|
2 人回复
|
2022-05-23
|
1金钱
我该如何读取和修改dom元素的property属性呢?
我使用了console.dir(e),打印出了它的property,那么如何修改和读取这个对象里面的属性呢?
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!-- 添加一个新的自定义attribute -->
- <div id="box" class="box"></div>
- </body>
- <script>
- const e = document.getElementById('box');
- console.dir(e)
- </script>
- </html>
复制代码
|
|
|
|
|
|
|
admin
发表于 2022-5-23 22:45:33
|
显示全部楼层
|
|
|
|
|
|
test
发表于 2022-5-26 16:48:04
来自手机
|
显示全部楼层
111111111111111111111111111111 |
|
|
|
|
|