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

请输入您要查询的范文:

 

标题 html中实现文本框出现提示功能的多种方法
范文
    可以用html5中的属性 < input ="text" placeholder="你想输入的内容" >
    也可以用js做到 加css样式
    代码如下:
    <style type="text/css">
    .in_search {
    border:1 none;
    color:#999999;
    float:left;
    font-size:14px;
    height:18px;
    line-height:18px;
    margin:3px 2px;
    width:253px;
    }
    </style>
    <input name="q" onfocus="if(this.value=='请输入你想要输入的内容'){this.value='';}" onblur="if(this.value==''){this.value='请输入你想要输入的内容';}" type="text" value="请输入你想要输入的内容"/>
随便看

 

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

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/13 4:37:18