var mychar=document.getElementById("txt");//定义"改变颜色"的函数function changecolor(){ mychar.style.color="#8e8e8e"; mychar.style.backgroundColor="blue";}//定义"改变宽高"的函数function changehw(){ mychar.style.width="500px"; mychar.style.height="500px";}//定义"隐藏内容"的函数function hidetext(){ mychar.style.display="none";}//定义"显示内容"的函数function showtext(){ mychar.style.display="block";}//定义"取消设置"的函数function removeset(){ var res=confirm("确定取消设置?"); if(res==ture) { mychar.removeAttribute("style"); }} </script></body></html>
添加回答
举报
0/150
提交
取消