成功我只欠努力
2017-01-06 09:57
var a1=document.getElementById("txt")
function color(){
a1.style.color="red";
a1.style.backgroundColor="#ccc";
}
function width(){
a1.style.height="300px";
a1.style.width="200px";
}
function hide(){
a1.style.display="none";
}
function display(){
a1.style.display="block";
}
function confirm("确定要取消设置吗?"){
a1.style.height="400px";
a1.style.width="600px";
a1.style.border="#333 solid 1px";
a1.style.padding="5px";
}
//定义"取消设置"的函数
function change_set(){
var sse=confirm("取消设置?");
if(sse==true){
var s=document.getElementById("con");
s.removeAttribute("style");
var h=document.getElementById("txt");
h.removeAttribute("style");
} else {
alert("取消了");
}
}
function confirm(){
var a=confirm("是否取消设置");
if(a==true){
txt.style.color="auto";
txt.style.width="600px";
txt.style.height="400px";
txt.style.display="block";
}
这里有个判断,所以要加个if语句判断,提示那里说确认了才恢复默认的,
JavaScript入门篇
739818 学习 · 9566 问题
相似问题