取消设置?的相关代码是什么
最后的取消设置的相关代码是什么?我怎么感觉课程里面没说到 的样子??
最后的取消设置的相关代码是什么?我怎么感觉课程里面没说到 的样子??
2016-02-14
查看下面的同学代码啊!!!!!!!!
function setReset()
{
var sr = document.getElementById("txt");
var srs = confirm("确认取消设置?");
if (srs==true)
{
sr.style.color = "black";
sr.style.backgroundColor = "white";
sr.style.width = orignWidth;
sr.style.height = orignHeight;
sr.style.display = "block";
}
}
或者
offSet:function(){
var message=confirm("你确定要重置所有设置么?");
if(message==true){
txt.removeAttribute('style');
}
}
举报