1 Star 0 Fork 0

recks/my-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
recks 提交于 2023-04-27 16:21 . rename index to index.html.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>DOM操作示例</title>
<style>
/* 样式表 */
.red {
color: red;
}
.blue {
color: blue;
}
</style>
</head>
<body>
<h1 id="title">这是一个标题</h1>
<p class="red">这是一个红色的段落</p>
<ul id="list">
<li>列表项1</li>
<li>列表项2</li>
<li>列表项3</li>
</ul>
<script>
// 获取元素
const titleElement = document.getElementById('title');
const redParagraphElements = document.getElementsByClassName('red');
const listElement = document.querySelector('#list');
const listItemElements = document.querySelectorAll('#list li');
// 操作元素属性
titleElement.setAttribute('class', 'blue');
redParagraphElements[0].style.backgroundColor = 'yellow';
listElement.addEventListener('click', () => {
console.log('列表被点击了');
});
// 操作元素内容
titleElement.textContent = '新的标题';
listElement.removeChild(listItemElements[1]);
// 创建新元素
const newListItemElement = document.createElement('li');
const newListItemTextElement = document.createTextNode('列表项4');
newListItemElement.appendChild(newListItemTextElement);
listElement.appendChild(newListItemElement);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code-html/my-test.git
git@gitee.com:code-html/my-test.git
code-html
my-test
my-test
master

搜索帮助