代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Css
】
选择不同的按钮文本框自动出现不同的内容
作者:
bacteroid
/ 发布于
2014/7/2
/
1007
<html> <head> <title>点击单选框改变输入框内容</title> </head> <body> <script language=JavaScript> var defaultValue = "" function Changes() { var defaultValue = "changed"; } ie = document.all?1:0 ns4 = document.layers?1:0 var c = 1 function hideIt(id) { if (ie) { document.all[id].style.zIndex = c--; document.all[id].style.visibility = "hidden"; document.all['hider'].style.visibility = "visible"; } else if (ns4) { document.layers[cat].layers[id].zIndex = c--; document.layers[cat].layers[id].visibility = "hide"; document.layers[cat].layers['hider'].visibility = "show"; } } function showIt(id) { if (ie) { document.all[id].style.zIndex = c++; document.all[id].style.visibility = "visible"; } else if (ns4) { document.layers[cat].layers[id].zIndex = c++; document.layers[cat].layers[id].visibility = "show"; } else { document.getElementById(id).style.zIndex = c++; document.getElementById(id).style.visibility = "visible"; } } function imgLbl(tab) { premier = frmWc.elements[tab - 1]; if (premier.checked == 1) { premier.checked = 0; } else { premier.checked = 1; } } </script> <FORM name=protectForm action=ok.asp method=post > <TABLE width=560> <TR> <TD> <TABLE cellPadding=2> <TR align=left> <TD vAlign=top align=left> <INPUT onclick="showIt( 'off');return true" type=radio value=0 name=Level checked> ASP</TD> <TD align=left width=20> </TD> <TD vAlign=top align=left><INPUT onclick="showIt( 'low');return true" type=radio value=25 name=Level> PHP</TD> <TD align=left width=20> </TD> <TD vAlign=top align=left> <INPUT onclick="showIt( 'high');return true" type=radio value=75 name=Level> JSP</TD> <TD align=left width=20> </TD> <TD vAlign=top align=left><INPUT onclick="showIt( 'excl');return true" type=radio value=100 name=Level> AJAX</TD> </TR></TABLE></TD></TR></TABLE> <table cellspacing=1 cellpadding=0 width=562 border="0" bgcolor="7285CF" height="240"> <tr> <td colspan=3 height="145" valign="top" bgcolor="F2F2F2"> <div id=off style="WIDTH: 560px;POSITION: absolute; HEIGHT: 230; z-index: 1; background-color: F2F2F2; layer-background-color: F2F2F2; border: 1px none #000000"> <table cellspacing=5 cellpadding=2 width="560" border="0"> <tr> <td width="560">ASP是一种微软发明的WEB动态编程语言。</td> </tr> </table> </div> <div id=low style="WIDTH: 560px;POSITION: absolute; HEIGHT: 230; z-index: 2; visibility: hidden; background-color: F2F2F2; layer-background-color: F2F2F2; border: 1px none #000000"> <table cellspacing=5 cellpadding=2 width="560"> <tr > <td width="1237">PHP是一种开源、免费平台通用型WEB编程语言。</td> </tr> </table> </div> <div id=high style="WIDTH: 560px;POSITION: absolute; HEIGHT: 230; z-index: 1; visibility: hidden; background-color: F2F2F2; layer-background-color: F2F2F2; border: 1px none #000000"> <table cellspacing=5 cellpadding=2 width="560"> <tr>JSP是SUN公司制造的基于JAVA的WEB编程容器,也是一种WEB编程语言。</td> </tr> </table> </div> <div id=excl style="WIDTH: 560px;POSITION: absolute; HEIGHT: 230; z-index: 1; visibility: hidden; background-color: F2F2F2; layer-background-color: F2F2F2; border: 1px none #000000"> <table cellspacing=5 cellpadding=2 width="560"> <tr> <td width="953">AJAX是一种WEB交互型框架语言,可以很好的提升用户体验。</td> </tr> </table> </div> </td> </tr> </table> <TABLE cellSpacing=0 cellPadding=0 width=560> <TR> <TD align=right height="30"> <INPUT class=bottom type=submit value=" 确定 "> <INPUT class=bottom type=button value=" 取消 " name="Button"> </TD></TR></TABLE> </FORM> </body> </html>
试试其它关键字
按钮文本框
同语言下
.
前端PC-移动端CSS公共样式+HTML
.
手机端页面通用样式
.
H5页面通用头部设置
.
elect默认样式美化代码兼容移动端和pc端
.
按钮效果 css
.
唤醒app
.
放大效果
.
html5+css3实现上拉和下拉刷新
.
html上传图片后,在页面显示上传的图片
.
html5实现点击弹出图片
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
bacteroid
贡献的其它代码
(
12
)
.
文本框输入提示/自动完成功能
.
在网页中用鼠标+ctrl复选表格或者直接反选
.
提交文章时弹出确认框
.
鼠标选中文字自动加入文本框中
.
使用JS按钮实现网页跳转功能
.
点击删除按钮弹出提示框代码
.
双击网页中的文字即可进行编辑
.
图片鼠标滑过变大
.
选择不同的按钮文本框自动出现不同的内容
.
输入框input鼠标点击自动加底色
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3