想不通为什么removeAttribute前面接txt就可以运行, 而换成div就不可以
<script type="text/javascript">
//定义"改变颜色"的函数
function but(){
var box=document.getElementById("txt")
box.style.color="red"
box.style.backgroundColor="#ccc"
}
//定义"改变宽高"的函数
function but1(){
var box=document.getElementById("txt")
box.style.width="320px"
box.style.height="450px"
}
//定义"隐藏内容"的函数
function but2(){
var box=document.getElementById("txt")
box.style.display="none"
}
//定义"显示内容"的函数
function but3(){
var box=document.getElementById("txt")
box.style.display="block"
}
//定义"取消设置"的函数
function but4(){
var box=confirm("你确定重置所有属性")
if(box!=null){
txt.removeAttribute("style")
}
}