1 Star 0 Fork 0

luenay/js_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
使用DOM操作css.html 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
luenay 提交于 2022-04-23 00:37 . addfiles
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#box1{
width: 200px;
height: 200px;
background-color:skyblue;
}
</style>
</head>
<body>
<button id="btn01">点我一下</button>
<button id="btn02">点我一下2</button>
<div id="box1"></div>
</body>
<script>
window.onload = function(){
// 点击按钮以后,修改box1的大小
// 获取box1
var box1 = document.getElementById("box1");
// 为按钮绑定单击响应函数
var btn01 = document.getElementById("btn01");
btn01.onclick = function(){
// 修改box1的宽度
// 通过JS修改元素的样式
// 语法:元素.style.样式名 = 样式值
// 注意:如果css的样式名中含有-
// 那么这种名称在JS中是不合法的,如:background-color,需要修改为驼峰命名
box1.style.width = "400px";
box1.style.backgroundColor = "pink";
};
// 点击按钮2以后,读取元素的样式
var btn02 = document.getElementById("btn02");
btn02.onclick = function(){
// 读取box1的样式
// 语法:元素.style.样式名
alert(box1.style.width);
}
}
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luenay/js_study.git
git@gitee.com:luenay/js_study.git
luenay
js_study
js_study
master

搜索帮助