1、选项卡效果

第一种方法:
<!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>无标题文档</title>
<style type="text/css">
.se//设置标题的样式
{
width:150px;
height:30px;
line-height:30px;
text-align:center;
vertical-align:middle;
float:left;
}
#se1//设置选项卡se1的样式
{
background-color:yellow;
width:150px;
height:200px;
}
#se2//设置选项卡se2的样式
{
background-color:green;
width:150px;
height:200px;
}
#se3//设置选项卡se3的样式
{
background-color:red;
width:150px;
height:200px;
} </style>
</head>
<body>
<div class="se" biaoshi="yellow" style="background-color:yellow" onclick="color('yellow')">黄色</div>//建立标题,设置标识并添加事件
<div class="se" biaoshi="green" style="background-color:green" onclick="color('yellow')">绿色</div>
<div class="se" biaoshi="red" style="background-color:red" onclick="color('yellow')">红色</div> <div style="clear:both"></div>//截流 <div id="se1" style="display:block"></div>//建立选项卡
<div id="se1" style="display:none"></div>
<div id="se1" style="display:none"></div> </body>
<script type="application/javascript"> var se1=document.getElementById("se1");//找到对象选项卡
var se2=document.getElementById("se2");
var se3=document.getElementById("se3"); function color(a)//定义函数事件名称
{
if(a=="yellow")
{
se1.style.display="block";
se2.style.display="none";
se3.style.display="none";
}
else if(a=="green")
{
se1.style.display="none";
se2.style.display="block";
se3.style.display="none";
}
else if(a=="red")
{
se1.style.display="none";
se2.style.display="none";
se3.style.display="block";
}
} </script>
</html>
第二种方法:
<!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>无标题文档</title>
<style type="text/css">
.yan
{
width:50px;
height:30px;
line-height:30px;
text-align:center;
vertical-align:middle;
float:left;
}
#yan1
{
width:150px;
height:200px;
background-color:yellow;
}
#yan2
{
width:150px;
height:200px;
background-color:green;
}
#yan3
{
width:150px;
height:200px;
background-color:red;
} </style> </head>
<body> <div class="yan" style="background-color:yellow" onclick="changecolor('yan1')">黄色</div>
<div class="yan" style="background-color:green" onclick="changecolor('yan2')">绿色</div>
<div class="yan" style="background-color:red" onclick="changecolor('yan3')">红色</div> <div id="yan1" style="display:block"></div>--初始状态显示黄色
<div id="yan2" style="display:none"></div>--初始状态不显示颜色
<div id="yan3" style="display:none"></div>--初始状态不显示颜色 </body>
<script type="text/javascript"> function yincang()
{
document.getElementById("yan1").style.display="none";
document.getElementById("yan2").style.display="none";
document.getElementById("yan3").style.display="none";
}
function changecolor(a)--a是指三个id里的任何一个
{
yincang();--调用yincang函数
document.getElementById(a).style.display="block";根据id来找元素,找到后显示相对应的颜色
}
</script>
</html>

2、按钮前面打上勾之后按钮可用,否则不可用

<body>

<input id="wb" type="checkbox" onclick="dianji()"/>--设置一个单选按钮,添加一个单击鼠标执行的事件,名为dianji
<input id="bu" type="button" value="下一步" disabled="disabled"/>--设置一个按钮,并且设置为不可使用 </body>
<script type="text/javascript"> function dianji()
{
var wb=document.getElementById("wb");
var bu=document.getElementById("bu");
if(wb.checked==true)//选中按钮
{
bu.removeAttribute("disabled"); //删除不可使用这个属性,使得在选中按钮后下一步按钮可执行
}
else //没选中按钮
{
bu.setAttribute("disabled","disabled");//下一步这个按钮不可使用
}
}
</script> </html>

3、做下拉菜单效果

<!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>无标题文档</title>
<style type="text/css">
#cd
{
width:50px;
height:30px;
line-height:30px;
background-color:#C9F;
text-align:center;
vertical-align:middle;
}
#cd:hover
{
cursor:pointer;
background-color:#C3C;
}
#xl
{
width:50px;
height:120px;
line-height:30px;
text-align:center;
vertical-align:middle;
background-color:#CC9;
} </style>
</head> <body>
<div id="cd" onmouseover="xianshi()" onmouseout="yincang()">菜单</div>--鼠标放上去执行xianshi事件,鼠标移开显示yincang事件 <div id="xl" style="display='none'">--下拉菜单初始状态为隐藏上去
<div class="c" >苹果</div>
<div class="c">梨子</div>
<div class="c">香蕉</div>
<div class="c">山竹</div>
</div>
</body>
<script type="text/javascript">
function xianshi()
{
document.getElementById("xl").style.display="block";--鼠标放上去显示
}
function yincang()
{
document.getElementById("xl").style.display="none"; --鼠标移开不显示
}
</script>
</html>

4、倒计时按钮,倒计时10秒之后可用。

<!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>无标题文档</title>
</head> <body>
<input id="s" type="button" value="同意(9)" disabled="disabled"/>
</body>
<script type="text/javascript"> var n=;
function s()
{
n--;
var a=document.getElementById("s");
if(n==)
{
a.value="同意";
a.removeAttribute("disabled");
}
else
{
a.value="同意("+n+")";
window.setTimeout("s()",);--延迟1秒变一次
}
}
window.setTimeout("s()",);
</script>
</html>

5、做一个问题,输入答案之后,点击按钮查看答案是否正确。

<!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>无标题文档</title>
</head> <body>
<span>车轮是圆的还是方的?</span>
<textarea id="hd" daan="圆的"></textarea>
<input type="button" value="检查" onclick="show()"/>
</body>
<script type="text/javascript">
function show()
{
var a=document.getElementById("hd");
var b=a.getAttribute("daan");
var c=a.value;
if(b==c)
{
alert("恭喜答对了");
}
else
{
alert("答错了");
}
}
</script>
</html>

最新文章

  1. Oracle Sales Cloud:管理沙盒(定制化)小细节1——利用公式创建字段并显示在前端页面
  2. DevExpress GridControl使用方法
  3. hrbustoj 1545:基础数据结构——顺序表(2)(数据结构,顺序表的实现及基本操作,入门题)
  4. 加载网络映射盘中的assembly失败
  5. 旨在脱离后端环境的前端开发套件 - IDT Server篇
  6. POJ 1961 2406 (KMP,最小循环节,循环周期)
  7. 在查找预编译头时遇到意外的文件结尾。是否忘记了向源中添加“#include &quot;StdAfx.h&quot;”?
  8. php-- 避免表单的重复提交
  9. 一周学会Mootools 1.4中文教程:(5)Ajax
  10. Linux部署ASP.NET 5 (vNext)
  11. SSH-Struts(一)——基本原理
  12. UITableView使用中的一些刁专问题总结
  13. 【Mysql】Mysql关键字
  14. UNIX网络编程——sockatmark函数
  15. YOLO v3
  16. Fiddler模拟自动响应数据
  17. sqlserver count(1),count(*),count(列名) 详解
  18. Expo大作战(十四)--expo中消息推送的实现
  19. 从客户端(ctl00$ContentPlaceHolder1$result=&quot;&lt;?xml version=&quot;1.0&quot; ...&quot;)中检测到有潜在危险的 Request.Form 值。
  20. 解题:PA 2014 Bohater

热门文章

  1. php下载服务器上的文件
  2. LR实战之Discuz开源论坛——登录脚本检查点
  3. pt-online-schema-change解读
  4. Android Studio自定义注释模板及生成JavaDoc
  5. 安卓开发之非常好用的AndroidOne框架DownloadManager
  6. Hadoop配置文件-core-site.xml
  7. 关于cookie的使用
  8. MSSQL 导入导出文本文件
  9. ios html5 长按复制文本
  10. Java GC机制和对象Finalize方法的一点总结