点击按钮改变div的颜色
生活随笔
收集整理的這篇文章主要介紹了
点击按钮改变div的颜色
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
注意點:javascript中獲取類的標簽為classname
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>演示文檔</title>
<script type="text/javascript">
</script>
<style type="text/css">
.day{
background-color:green;
}
.neight{
background-color:#eee;
}
</style>
</head>
<body>
<div id="divTest" class="day">
<font color="#ccc">內容</font>
</div>
<input type="button" value="提交" ?οnclick="document.getElementById('divTest').className='neight'"/>
</body>
</html>
總結
以上是生活随笔為你收集整理的点击按钮改变div的颜色的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 无刷新视频评论
- 下一篇: DOM的事件函数this和classNa