function clear(){
var c=confirm("是否取消设置?");
if(c==true)
{
text.removeAttribute("style");
}
else
alert("退出");
clear是JS的内置函数,不能作为函数名称,换个名字就好,比如clear1
直接写成: txt.removeAttribute("style");
有没有onclick=“clear();”
查看一下函数的调用是否正确,你给出的代码是没有问题的