<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="haa()" >
<input type="button" value="改变宽高" onclick="ha()" >
<input type="button" value="隐藏内容" onclick="hb()">
<input type="button" value="显示内容" onclick="hc()">
<input type="button" value="取消设置" onclick="hd()">
</form>
<script type="text/javascript">
定义"改变颜色"的函数
function haa()
document.getElementById("con").style.color="red";
//定义"改变宽高"的函数
function hb()
document.getElementById("txt").style.width="450px";
document.getElementById("txt").style.height="250px";
//定义"隐藏内容"的函数
function hc()
document.getElementById("txt").style.display="none";
//定义"显示内容"的函数
function hd()
document.getElementById("txt").style.display="block";
//定义"取消设置"的函数
var hd=confirm("恢复原始值?");
if hd==true
{document.write("yes")};
else
{document.wtite("no")};
function hd()
{ document.getElementById("txt").removeAttribute('style');
document.getElementById("con").removeAttribute('style');
}
忘给函数加花括号了吧……
取消设置不是removeAttribute(“style”)吗?