按了按钮没有任何反应
按了按钮没有任何反应,哪里出问题了?
2016-05-09
var set={
changeColor:function(){
txt.style.color="red";
txt.style.backgroundColor="#ccc";
},
//定义"改变宽高"的函数
changeSize:function(){
txt.style.width="300px";
txt.style.height="300px";
},
//定义"隐藏内容"的函数
Hide:function(){
txt.style.display="none";
},
//定义"显示内容"的函数
Show:function(){
txt.style.display="block";
},
//定义"取消设置"的函数
reset:function(){
var message=confirm("你确定要重置所有设置么?");
if(message==true){
txt.removeAttribute('style');
}
}
}
每个函数要用逗号分开
Hide:function:()你这儿也多了一个:
举报