function ClickClear(){
var txt1 = document.getElementById("txt");
txt1=confirm("是否取消设置?");
if(txt1==true){
document.getElementById("txt").removeAttribute("style");
}
}
var mye=document.getElementById("txt");
function resetStyle(){
var message=confirm("你确定重置所有样式吗?");
if(message==(true){
mye.removeAttribute('style')
}
}
除了楼上的方法还有没有其他的实现???
//定义"取消设置"的函数
function rest(){
if(confirm("是否取消设置")){
var obj=document.getElementById("txt");
obj.style.color="black";
obj.style.backgroundColor="white";
obj.style.width="600px";
obj.style.height="400px";
obj.style.display="block";
}