var he = document.getElementById("con");
var tt= document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
tt.style.color="red";
tt.style.backgroundColor="pink";
}
//定义"改变宽高"的函数
function changeWidthAndHeight(){
tt.style.width ="300px";
tt.style.height ="500px";
}
//定义"隐藏内容"的函数
function hideText(){
tt.style.display="none";
}
//定义"显示内容"的函数
function showtext(){
tt.style.display="block";
}
//定义"取消设置"的函数
function offSet(){
var a = confirm("是否重置");
if(a==true)
{tt.removeAttribute("style");}
else{}
}
点击显示按钮没有回复显示?
可以显示的
有用啊,你点一下右上角的 全屏,再试试