为什么我写的取消设置没用呢
为什么我写的取消设置没用呢,为什么取消不了呢,有没有大神会啊
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changeColor()">
<input type="button" value="改变宽高" onclick="changeWidth()" >
<input type="button" value="隐藏内容" onclick="dis()" >
<input type="button" value="显示内容" onclick="show()" >
<input type="button" value="取消设置" onclick="co()">
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
function changeColor(){
var col=document.getElementById("txt");
col.style.color="red";
col.style.backgroundcolor="#F00";
}
//定义"改变宽高"的函数
function changeWidth(){
var wi=document.getElementById("txt");
wi.style.width="300px";
wi.style.height="600px";
}
//定义"隐藏内容"的函数
function dis(){
var di=getElementById("txt");
di.style.display="none";
}
//定义"显示内容"的函数
function show(){
var disp=getElementById("txt");
disp.style.display="block";
}
//定义"取消设置"的函数
function co(){
var t=confirm("你确定取消设置吗?");
if(t=="true"){
txt.removeAttribute('style');
}
}
</script>