function rec(){ var rec=confirm("是否取消设置?"); if(rec==true){ var txt = document.getElementById("txt"); txt.removeAttribute("style"); } }
function cancle(){
var myfive=confirm("确定恢复原始值吗?");
if ( myfive==true){
document.getElementById("txt").style.cssText="";
}
}