取消有问题
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既可以了?