网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 网页输入框的样式触发效果
范文
    这个例子主要学习两个参数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>姓名:</font> </td>
    <td><input size=40 name=name onblur="this.className='input1'" onfocus="this.className='input1-bor'">
    </td>
    </tr>
    <tr>
    <td><font>邮箱:</font></td>
    <td><input size=40 name=email onblur="this.className='input1'" onfocus="this.className='input1-bor'"></td>
    </tr>
    <tr>
    <td><font>网址:</font> </td>
    <td><input size=40 name=url onblur="this.className='input1'" onfocus="this.className='input1-bor'">
    </td>
    </tr>
    <tr>
    <td><font>主题:</font> </td>
    <td><input size=40 name=subject onblur="this.className='input1'" onfocus="this.className='input1-bor'">
    </td>
    </tr>
    <tr>
    <td><font>内容: </font> </td>
    <td><textarea name=message rows=5 cols=35 onblur="this.className='input1'" onfocus="this.className='input1-bor'"></textarea></td></tr></table>
    </body>
    </html>
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/14 3:59:59