定义“取消设置”的函数,我这么设置怎么起不了作用呢?
function cancel(){
var message=confirm("确定要取消设置么?")
if(message=="true"){
var pp=document.getElementById("txt");
pp.style.width="600px";
pp.style.height="400px";
pp.style.color="#000";
pp.style.backgroundColor="#fff";
pp.style.display="block";
}
}