同样的代码格式执行不了
//定义"改变颜色"的函数
function color1(){
var mychara=document.getElementById("txt");
mychara.style.color="red";
mychara.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function width1(){
var mycharb=document.getElementById("txt");
mycharb.style.width="100px";
mycharb.style.height="100px";
}
//定义"隐藏内容"的函数
function hide(){
var mycharc=document.getElementById("txt");
mycharc.style.display="none";
}
//定义"显示内容"的函数
function show(){
var mychard=document.getElementById("txt");
mychard.style.display="block";
//定义"取消设置"的函数
function conf(){
var mycharf=document.getElementById("txt");
var mychare=confirm("取消设置");
if(mychare==true){
mychare.removeAttribute("style");
}else
{
mycharf.className="null";
}
}