//定义"取消设置"的函数 function tmove() { var temp=confirm("确认要取消设置吗?"); if(temp) { var mychar=document.getElementById("txt"); mychar.removeAttribute("style"); } }初学者,欢迎评价。
这个removeAttribute方法是删除<>标签内,属性名称对应的字段,比如标签内有style="height:200px",此时,该部分会被删除