function hidden() { var now=confirm("是否取消设置","是"); if(now==true) { document.getElementById("txt").removeAttribute('style') } 为什么不可以取消设置呢???????
同样遇到这样的问题,试试用英文代替: confirm("Do you want to cancel?");
if(now==true) { now.removeAttribute('style') }
confirm("是否取消设置");
你的取消设置按钮是否调用 hidden()函数??