Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1912506
  • 博文数量: 45
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 515
  • 用 户 组: 普通用户
  • 注册时间: 2019-08-05 16:22
文章分类

全部博文(45)

文章存档

2020年(4)

2019年(41)

我的朋友

分类: JavaScript

2019-10-08 08:39:01

更改P元素的样式:
  1. <html>
  2. <body>
  3. <p id="p2">Hello World!>
  4. <script>
  5. document.getElementById("p2").style.color = "blue";
  6. </script>
  7. <p>The paragraph above was changed by a script.</p>
  8. </body>
  9. </html>
单击按钮时,此示例更改id="id1"元素的样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1 id="id1">My Heading 1</h1>
  5. <button type="button"
  6. onclick="document.getElementById('id1').style.color = 'red'">
  7. 点击我!>
  8. </body>
  9. </html>




阅读(6225) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~