当前位置: 首页 > 图文教程 > 网页制作 > HTML/XHTML教程 > 网页输入框的样式触发效果

HTML/XHTML教程
HTML表格标记教程(37):表头的背景图象属性BACKGROUND
HTML表格标记教程(41):表头的宽度和高度属性WIDTH、HEIGHT
HTML表格标记教程(36):表头的背景色属性BGCOLOR
揭开HTML 5工作草稿的神秘面纱
清除网页文字水印的两种简单方法
W3C公布最新的HTML5标准草案
XHTML与CSS的面向对象编程
XHTML三种文件类型声明
通过实例掌握BR和P标签的区别
网页表格或div层在网页中被撑开解决之道
网页设计之网页音乐的实现技巧
XHTML常用标签介绍
HTML网页图片标记
网页表单设计实例技巧五则
HTML网页列表标记学习教程
HTML网页超链接标记
HTML表单标记教程(4):
HTML表单标记教程(5):文字域标记
HTML表单标记教程(2):
HTML表单标记教程(3):输入标记

HTML/XHTML教程 中的 网页输入框的样式触发效果


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 206 ::
收藏到网摘: n/a


  这个例子主要学习两个参数onblur和onFocus.因为这两个参数以前很少遇到,baidu 一下明白了,onblur 是控件在失去焦点的时候触发的事件,而onFocus就是成为输入焦点的时候触发的事件,这两个参数都可以和className结合直接调用样式表类名
                                      
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body>
<style type="text/css">
.input1{
font-family: verdana;background-color: #EEEEEE;border-bottom: #FFFFFF 1px solid;border-left: #CCCCCC 1px solid;border-right: #FFFFFF 1px solid;border-top: #CCCCCC 1px solid;font-size: 12px;
}
.input1-bor {
font-family:verdana;background-color:#F0F8FF;font-size: 12px;
border: 1px solid #333333;}
</style>
<table cellspacing=2 cellpadding=0 width=300 border=0>
<tr>
<td><font class="en1">姓名:</font> </td>
<td><input size=40 name=name class="input1" onblur="this.className='input1'" onfocus="this.className='input1-bor'">
</td>
</tr>
<tr>
<td><font class="en1">邮箱:</font></td>
<td><input size=40 name=email class="input1" onblur="this.className='input1'" onfocus="this.className='input1-bor'"></td>
</tr>
<tr>
<td><font class="en1">网址:</font> </td>
<td><input size=40 name=url class="input1" onblur="this.className='input1'" onfocus="this.className='input1-bor'">
</td>
</tr>
<tr>
<td><font class="en1">主题:</font> </td>
<td><input size=40 name=subject class="input1" onblur="this.className='input1'" onfocus="this.className='input1-bor'">
</td>
</tr>
<tr>
<td><font class="en1">内容: </font> </td>
<td><textarea name=message rows=5 cols=35 class="input1" onblur="this.className='input1'" onfocus="this.className='input1-bor'"></textarea></td></tr></table>             
</body>
</html>