本文主要描述了,利用JavaScript
對CSS
樣式中的行內樣式和類別樣式進行更改,簡化日常的操作流程,讓HTML
介面更加簡潔。
html中的內容:
<!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>css操作</title> <style> .bgn-cyan{ background-color: cyan; } .bgn-yellow{ background-color: #ff0; } .border{ border:3px solid #000; } .bolder{ font-weight: bolder; } p{ height: 25px; } </style> </head> <body> </body> </html>
1.行內樣式
<script> //获取p标签元素 const p=document.querySelector("p"); //验证是否获取成功 console.log(p); p.style.color="red"; </script>
2.類別樣式
<script> const p=document.querySelector("p"); //添加类样式 p.classList.add("bgn-cyan"); //添加多个类样式 p.classList.add("border","bolder"); //对于样式的移除 p.classList.remove("bolder","border"); //对样式的替换 p.classList.replace("bgn-cyan","bgn-yellow"); //对是否有这个样式进行取反 p.classList.toggle("bgn-cyan"); //原有样式("bgn-cyan")被替换过后replace("bgn-cyan","bgn-yellow") 使用toggle("bgn-cyan")无法实现 </script>
推薦:《2021年js面試題及答案(大匯總)》
以上是如何利用JS對CSS樣式進行更改的詳細內容。更多資訊請關注PHP中文網其他相關文章!