<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changeColor()">
<input type="button" value="改变宽高" onclick="changeWH()">
<input type="button" value="隐藏内容" onclick="changeHide()">
<input type="button" value="显示内容" onclick="changeShow()">
<input type="button" value="取消设置" onclick="reset()">
</form>
<script type="text/javascript">
var mytxt=document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
mytxt.style.color="red";
mytxt.style.backgroundColor="#ccc";
}
//定义"改变宽高"的函数
function changeWH(){
mytxt.style.width="400px";
mytxt.style.height="500px";
}
//定义"隐藏内容"的函数
function changeHide(){
mytxt.style.display="none";
}
//定义"显示内容"的函数
function changeShow(){
mytxt.style.display="block";
}
//定义"取消设置"的函数
function reset(){
var mymessage=confirm("是否取消设置?");
if(mymessage==true)
mytxt.removeAttribute('style');
}
</script>