JS中恢复原始值的代码怎么写
JS入门篇的最后一个编程挑战的第五个任务,在经过一系列的样式改变后,写一个函数:点击“取消设置”按钮后恢复到原始值,请问怎么写?
JS入门篇的最后一个编程挑战的第五个任务,在经过一系列的样式改变后,写一个函数:点击“取消设置”按钮后恢复到原始值,请问怎么写?
2015-11-24
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>javascript</title>
<style type="text/css">
#txt{
height:400px;
width:600px;
border:#333 solid 1px;
padding:5px;
}
p{
line-height:18px;
text-indent:2em;
}
</style>
</head>
<body>
<h2 id="con">Javascript</h2>
<div id="txt">
<h5>Javascript为网页添加动态效果并实现与用户交互功能。</h5>
<p>1.Javascript入门篇,让不懂JS的你,快速了解JS。</p>
<p>2.Javascript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>
<p>3.学完以上两门基础课后,在深入学习Javascript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>
</div>
<form>
<input type="button" value="改变颜色" onclick="add1()"/>
<input type="button" value="改变宽高" onclick="add2()"/>
<input type="button" value="隐藏内容" onclick="add3()"/>
<input type="button" value="显示内容" onclick="add4()"/>
<input type="button" value="取消设置" onclick="add5()"/>
</form>
<script type="text/javascript">
function add1(){
var ad=document.getElementById("txt");
ad.style.color="red";
}
function add2(){
var ac=document.getElementById("txt");
ac.style.height="500px";
ac.style.width="700px";
}
function add3(){
var ab=document.getElementById("txt");
ab.style.display="none";
}
function add4(){
var aa=document.getElementById("txt");
aa.style.display="block";
}
function add5(){
var ag=document.getElementById("txt");
var ae=confirm("确定要取消设置")
if (ae==true){
ag.removeAttribute("style");
}
else{
ag.className="null";
}
}
</script>
</body>
</html>
举报