点击按钮改变div的颜色

来源:互联网 发布:支持中文的编程字体 编辑:程序博客网 时间:2024/04/28 18:10

注意点: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="提交"  onclick="document.getElementById('divTest').className='neight'"/>


</body>
</html>