深山小童
2016-03-20 23:16
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>className属性</title>
<style>
body{ font-size:16px;}
.one{
border:1px solid #eee;
width:230px;
height:50px;
background:#ccc;
color:red;
}
.two{
border:1px solid #ccc;
width:230px;
height:50px;
background:#9CF;
color:blue;
}
</style>
</head>
<body>
<p id="p1" > JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<input type="button" value="添加样式" onclick="add()"/>
<p id="p2" class="one">JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<input type="button" value="更改外观" onclick="modify()"/>
<script type="text/javascript">
function add(){
// var p1 = document.getElementById("p1");
p1.className = "one";
}
function modify(){
// var p2 = document.getElementById("p2");
p2.className = "two";
}
</script>
</body>
</html>
p1.className = "one";
p2.className = "two";
这两句就可以获取class属性,因为本文将变量名和样式名写成一样的,所以很多人看着很绕,这里的p1和p2被认为是元素id了,所以才能设置元素,但实际上我们的认为是变量。建议你将变量给修改,就知道结果了
可能是缓存问题
var p1 = document.getElementById("p1");
var p2 = document.getElementById("p2");这两段语句是通过ID获取了P1和P2的元素,如何然后再去修饰元素。
JavaScript入门篇
739817 学习 · 9566 问题
相似问题