控制类名如何让按钮循环效果?
现在点击按钮,可以添加.two样式?如果想再点击一次按钮,恢复.one样式。循环往复,不知道该添加什么语句??
<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="p2" class="one">JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<input type="button" value="更改外观" onclick="modify()"/>
<script>
function modify(){
var p2 = document.getElementById("p2");
p2.className="two"; }
</script>