请问大佬最后这个取消设置的函数应该怎么写?
请问取消设置的函数怎么写?恢复原来的样式这个函数怎么写?
请问取消设置的函数怎么写?恢复原来的样式这个函数怎么写?
2018-08-13
function cancel() { var x=confirm("真的要取消设置吗?") ; if(x==true) { var p=document.getElementById("txt"); p.style.color=""; p.style.backgroundColor=""; p.style.width=""; p.style.height=""; p.style.display=""; } else { } }
留空白就可以啦,当然你也可以设置为原来的值,比如:
function 取消设置() { var x=confirm("是否取消设置?"); if(x==true){ var p=document.getElementById("txt"); p.style.width="600px" p.style.height="400px" p.style.color="black" p.style.backgroundColor="white" p.style.display="block" } else { } }
举报