一个都不好用
<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="changecolor">
<input type="button" value="改变宽高" onclick="changesize">
<input type="button" value="隐藏内容" onclick="hide">
<input type="button" value="显示内容" onclick="show">
<input type="button" value="取消设置" onclick="resettext">
</form>
<script type="text/javascript">
var myp=document.getElementById("txt");
//定义"改变颜色"的函数
function changecolor(){
myp.style.color="red";
myp.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function changesize(){
myp.style.widht="300px";
myp.style.height="500px";
}
//定义"隐藏内容"的函数
function hide(){
myp.style.display="none";
}
//定义"显示内容"的函数
function show(){
myp.style.display="block";
}
//定义"取消设置"的函数
function resettext(){
var mychose = confirm();
if(mychose==true){
mydiv.removeAttribute("style");
}
}
}
</script>
</body>
</html>