为什么我这里设置的取消按钮是无效的呢?
<style>
body{ font-size:16px;}
.one{
border:1px solid #eee;
width:230px;
height:50px;
background:#ccc;
color:red;
}
</style>
</head>
<body>
<p id="p1"> JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<input type="button" value="添加样式" onclick="add()"/>
<input type="button" value="取消设置" onclick="quxiao()"/>
<script type="text/javascript">
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
//定义取消设置
function quxiao(){
var a = document.getElementById("p1");
var qx=confirm("是否取消");
if(qx==true){
a.removeAttribute('style');
}
}
</script>