function Cancel()
{
var sure=confirm("Are you sure?");
if(sure==ture)
{
var can=document.getElementById('txt');
can.style.color='#000';
can.style.backgroundColor='#fff';
can.style.display='block';
can.style.width='400px';
can.style.height='600px';
}
}
为什么加个if判断不起作用,去掉if既可以了?
取消你可以使用:
var mychar = document.getElementById("txt");
mychar.className="txt";
这个方法可以使所有样式恢复原样(我改变的是源代码中id=“txt”的内容)
你的方法也是可以的
可以,我刚才试了