//定义"改变颜色"的函数
function changeColor(){
var hh=document.getElementById("txt");
hh.style.color="red";
hh.style.backgroundColor="#ccc";
}
//定义"改变宽高"的函数
function changeSize(){
var hh=document.getElementById("txt");
hh.style.width="300px";
hh.style.height="300px";
}
//定义"隐藏内容"的函数
function hide(){
var hh=document.getElementById("txt");
hh.style.display="none";
}
//定义"显示内容"的函数
function show(){
var hh=document.getElementById("txt");
hh.style.display="block";
}
//定义"取消设置"的函数
function offset(){
var mes=confirm("确定取消设置吗?");
if (mes==ture){
mydiv.removeAttribute("style");
}
}
效果都显示不出来,请问哪里出问题了?
按钮设置了么?在按钮后面定义一下
恩,看着代码都是没问题的,估计是你没有给按钮添加点击事件。有个地方你写的不太完美,就是最后一个函数,if(mes)这么写就可以了,不用mes==true;因为confirm()方法返回值就是true 、false,就是一个boolean,不用再去判断了!