热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用Dom对象操作css样式>笔记

DOCTYPE html> 使用Dom对象操作css样式 #box{




DOCTYPE html>
<html>
<head>
<meta charset&#61;"utf-8">
<meta name&#61;"author" content&#61;"huyiwei">
<meta name&#61;"generator" content&#61;"HBuilder X">
<title>使用Dom对象操作css样式title>
<style>
#box{
width: 100px;
height: 100px;
background-color: aqua;
}
style>
head>
<body>
<div id&#61;"box">div>
<button type&#61;"button" id&#61;"btn">
点我试试
button>

<button type&#61;"button" id&#61;"btn2">
点我试试2
button>


<script>
//获取按钮对象
var btn &#61; document.getElementById("btn");

//获取box对象
var box &#61; document.getElementById("box");

//给按钮对象绑定事件
btn.onclick &#61; function(){
//修改点击时box的高度和宽度
//js修改元素样式&#xff1a;语法&#xff1a;元素.style.样式名 &#61; 样式值
box.style.width &#61; "300px";
box.style.height &#61; "300px";
//如果css样式名中含有“-”这种在js中不合法
box.style.background-color &#61; "red";//有问题

//解决办法
//将样式名改为驼峰命名法 去掉- 将-后面的字母大写
box.style.backgroundColor &#61; "red";

//通过style属性设置的样式都是内联样式&#xff0c;优先级较高&#xff0c;通过js修改的样式会立即显示
}
//点击第二个按钮&#xff0c;读取元素样式
var btn2 &#61; document.getElementById("btn2");
btn2.onclick &#61; function(){
//获取样式值
//元素.style.样式名
//通过style属性设置和读取的都是内联样式&#xff0c;无法读取style标签中的样式
console.log(box.style.width);
}

script>
body>
html>






推荐阅读
author-avatar
那是黑夜过后的黎明_182
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有